Skip to content

Commit

Permalink
feat(obstacle_avoidance_planne): enable plan_from_ego by default (#1673)
Browse files Browse the repository at this point in the history
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
  • Loading branch information
kosuke55 authored Aug 29, 2022
1 parent 4e1ff9b commit 6d669de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
option:
steer_limit_constraint: true
fix_points_around_ego: true
plan_from_ego: false
plan_from_ego: true
max_plan_from_ego_length: 10.0
visualize_sampling_num: 1
enable_manual_warm_start: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
option:
steer_limit_constraint: true
fix_points_around_ego: true
plan_from_ego: false
plan_from_ego: true
max_plan_from_ego_length: 10.0
visualize_sampling_num: 1
enable_manual_warm_start: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ struct ReferencePoint
// one is fixing points around ego for stability
// second is fixing current ego pose when no velocity for planning from ego pose
boost::optional<Eigen::Vector2d> fix_kinematic_state = boost::none;
bool plan_from_ego = false;
bool plan_from_ego = true;
Eigen::Vector2d optimized_kinematic_state;
double optimized_input;

Expand Down

0 comments on commit 6d669de

Please sign in to comment.