Skip to content

Commit

Permalink
remove cerr print
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Sanchez <[email protected]>
  • Loading branch information
danielsanchezaran committed Feb 2, 2024
1 parent ab8d18f commit e5f6309
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,6 @@ class SamplingPlannerModule : public SceneModuleInterface
const bool merged_back_to_path =
(std::abs(ego_arc.distance) < threshold_lat_distance_for_merging) &&

Check warning on line 230 in planning/behavior_path_sampling_planner_module/include/behavior_path_sampling_planner_module/sampling_planner_module.hpp

View check run for this annotation

Codecov / codecov/patch

planning/behavior_path_sampling_planner_module/include/behavior_path_sampling_planner_module/sampling_planner_module.hpp#L230

Added line #L230 was not covered by tests
(yaw_difference < threshold_yaw_difference_for_merging);
if (isReferencePathSafe() && (merged_back_to_path))
for (int i = 0; i < 10; ++i) std::cerr << "MERGED BACK!!!!!\n";
return isReferencePathSafe() && (merged_back_to_path);
}

Check warning on line 233 in planning/behavior_path_sampling_planner_module/include/behavior_path_sampling_planner_module/sampling_planner_module.hpp

View check run for this annotation

Codecov / codecov/patch

planning/behavior_path_sampling_planner_module/include/behavior_path_sampling_planner_module/sampling_planner_module.hpp#L232-L233

Added lines #L232 - L233 were not covered by tests

Expand Down

0 comments on commit e5f6309

Please sign in to comment.