Skip to content

Commit

Permalink
fix small typo in C bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rauch committed May 12, 2019
1 parent 79699fc commit bf0a3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exotations/solvers/exotica_ik_solver/src/ik_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void IKSolver::SpecifyProblem(PlanningProblemPtr pointer)
prob_ = std::static_pointer_cast<UnconstrainedEndPoseProblem>(pointer);

if (parameters_.C < 0 || parameters_.C >= 1.0)
ThrowNamed("C must be from interval <0, 1)!");
ThrowNamed("C must be from interval [0, 1)!");
C_ = Eigen::MatrixXd::Identity(prob_->cost.length_jacobian, prob_->cost.length_jacobian) * parameters_.C;
W_ = prob_->W;

Expand Down

0 comments on commit bf0a3d2

Please sign in to comment.