Skip to content

Commit

Permalink
fix duplicated t+=dt
Browse files Browse the repository at this point in the history
  • Loading branch information
Jumpei-Arima committed Jul 1, 2021
1 parent 89fa61f commit fbb1b7d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/dwa_planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ std::vector<DWAPlanner::State> DWAPlanner::dwa_planning(
for(float t=0; t<=PREDICT_TIME; t+=DT){
motion(state, v, y);
traj.push_back(state);
t += DT;
}
trajectories.push_back(traj);

Expand Down

0 comments on commit fbb1b7d

Please sign in to comment.