Skip to content

Commit

Permalink
[core] Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cmower committed Jun 20, 2019
1 parent 7af1c23 commit 2475911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exotica_core/src/planning_problem.cpp
Expand Up @@ -296,7 +296,7 @@ std::pair<std::vector<double>, std::vector<double>> PlanningProblem::GetCostEvol

int PlanningProblem::GetNumberOfIterations() const
{
return static_cast<int>(std::get<0>(GetCostEvolution())).size();
return static_cast<int>(std::get<0>(GetCostEvolution()).size());
}

double PlanningProblem::GetCostEvolution(int index) const
Expand Down

0 comments on commit 2475911

Please sign in to comment.