Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9cc24b7

Browse files
committedFeb 20, 2024·
fix the explanation of the hysteresis count
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
1 parent f48888e commit 9cc24b7

File tree

1 file changed

+2
-2
lines changed
  • planning/behavior_path_lane_change_module

1 file changed

+2
-2
lines changed
 

‎planning/behavior_path_lane_change_module/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ if (Perform collision check?) then (<color:green><b>SAFE</b></color>)
297297
:Reset unsafe_hysteresis_count_;
298298
else (<color:red><b>UNSAFE</b></color>)
299299
:Increase unsafe_hysteresis_count_;
300-
if (unsafe_hysteresis_count_ > unsafe_hysteresis_threshold?) then (<color:green><b>SAFE</b></color>)
301-
else (<color:red><b>UNSAFE</b></color>)
300+
if (unsafe_hysteresis_count_ > unsafe_hysteresis_threshold?) then (<color:green><b>FALSE</b></color>)
301+
else (<color:red><b>TRUE</b></color>)
302302
#LightPink:Check abort condition;
303303
stop
304304
endif

0 commit comments

Comments
 (0)
Please sign in to comment.