提交 1596a69f 编写于 作者: J Jiaming Tao 提交者: Qi Luo

planning: minor naming changes

上级 8814a1bc
...@@ -92,8 +92,8 @@ stage_config: { ...@@ -92,8 +92,8 @@ stage_config: {
speed_limit: 1.0 speed_limit: 1.0
max_valid_stop_distance: 0.4 max_valid_stop_distance: 0.4
min_boundary_t: 6.0 min_boundary_t: 6.0
ignore_max_min_t: 0.1 ignore_max_st_min_t: 0.1
ignore_min_min_s: 15.0 ignore_min_st_min_s: 15.0
} }
} }
task_config: { task_config: {
......
...@@ -13,8 +13,8 @@ message DeciderCreepConfig { ...@@ -13,8 +13,8 @@ message DeciderCreepConfig {
optional double min_boundary_t = 4 [default = 6.0]; // second optional double min_boundary_t = 4 [default = 6.0]; // second
// tolerance min_t & min_s to ignore obstacles which are moving // tolerance min_t & min_s to ignore obstacles which are moving
// on same direction of ADC while creeping // on same direction of ADC while creeping
optional double ignore_max_min_t = 5 [default = 0.1]; // second optional double ignore_max_st_min_t = 5 [default = 0.1]; // second
optional double ignore_min_min_s = 6 [default = 15.0]; // meter optional double ignore_min_st_min_s = 6 [default = 15.0]; // meter
} }
message RuleCrosswalkConfig { message RuleCrosswalkConfig {
......
...@@ -92,8 +92,8 @@ stage_config: { ...@@ -92,8 +92,8 @@ stage_config: {
speed_limit: 1.0 speed_limit: 1.0
max_valid_stop_distance: 0.4 max_valid_stop_distance: 0.4
min_boundary_t: 6.0 min_boundary_t: 6.0
ignore_max_min_t: 0.1 ignore_max_st_min_t: 0.1
ignore_min_min_s: 15.0 ignore_min_st_min_s: 15.0
} }
} }
task_config: { task_config: {
......
...@@ -145,9 +145,9 @@ bool DeciderCreep::CheckCreepDone(const Frame& frame, ...@@ -145,9 +145,9 @@ bool DeciderCreep::CheckCreepDone(const Frame& frame,
// along the direction of ADC // along the direction of ADC
if (obstacle_traveled_s < kepsilon && if (obstacle_traveled_s < kepsilon &&
obstacle->reference_line_st_boundary().min_t() < obstacle->reference_line_st_boundary().min_t() <
creep_config.ignore_max_min_t() && creep_config.ignore_max_st_min_t() &&
obstacle->reference_line_st_boundary().min_s() > obstacle->reference_line_st_boundary().min_s() >
creep_config.ignore_min_min_s()) { creep_config.ignore_min_st_min_s()) {
continue; continue;
} }
all_far_away = false; all_far_away = false;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册