Skip to content

Commit 3c47dad

Browse files
committed
Clarify handling of purely technical IDs
Addresses #809. Signed-off-by: Pierre R. Mai <[email protected]>
1 parent 7c9529f commit 3c47dad

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

osi_common.proto

+3
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,9 @@ message Orientation3d
197197
// available address space is exhausted and the specific values have not been in
198198
// use for several time steps. Sensor specific tracking IDs have no restrictions
199199
// and should behave according to the sensor specifications.
200+
// Purely simulation technical IDs, like sensor IDs, are not required to be
201+
// unique among all simulated items, but rather unique within the context of the
202+
// given message type.
200203
//
201204
// The value MAX(uint64) = 2^(64) -1 =
202205
// 0b1111111111111111111111111111111111111111111111111111111111111111 is

osi_sensorview.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ message SensorView
6565
// which are used in the detected features.
6666
//
6767
// \rules
68-
// is_globally_unique
68+
// is_locally_unique
6969
// is_set
7070
// \endrules
7171
//

rules.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ is_less_than: '^[ ]\b(is_less_than)\b: ([\s\d]+)$'
55
is_equal_to: '^[ ]\b(is_equal_to)\b: ([\s\d]+)$'
66
is_different_to: '^[ ]\b(is_different_to)\b: ([\s\d]+)$'
77
is_globally_unique: '^[ ]\b(is_globally_unique)\b'
8+
is_locally_unique: '^[ ]\b(is_locally_unique)\b'
89
refers_to: '^[ ]\b(refers_to)\b'
910
is_iso_country_code: '^[ ]\b(is_iso_country_code)\b'
1011
first_element: '^[ ]\b(first_element)\b'
1112
last_element: '^[ ]\b(last_element)\b'
1213
check_if: '^[ ](\bcheck_if\b)(.*\belse do_check\b)'
13-
is_set: '^[ ]\b(is_set)\b'
14+
is_set: '^[ ]\b(is_set)\b'

0 commit comments

Comments
 (0)