Skip to content

Commit

Permalink
chore(behaivor_velocity): remove debug
Browse files Browse the repository at this point in the history
Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
  • Loading branch information
taikitanaka3 committed Mar 1, 2022
1 parent a277bb0 commit b76b93a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ namespace behavior_velocity_planner
{
class StopLineModule : public SceneModuleInterface
{
int counter = 0;
using StopLineWithLaneId = std::pair<lanelet::ConstLineString3d, int64_t>;

public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,15 +265,6 @@ bool StopLineModule::modifyPathVelocity(
}
}

if (counter % 50 == 0) {
const auto & srci = src_point_with_search_range_index.index;
const auto & dsti = dst_search_range;
std::cout << " src min_idx: " << srci.min_idx << " max_idx: " << srci.max_idx
<< " dst min_idx: " << dsti.min_idx << " max_idx: " << dsti.max_idx
<< " stop_line_id: " << lane_id_ << " arclength: " << signed_arc_dist_to_stop_point
<< " current_state: " << static_cast<int>(state_) << std::endl;
}
counter++;
return true;
}

Expand Down

0 comments on commit b76b93a

Please sign in to comment.