Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexseal committed Jan 2, 2024
1 parent efb768d commit b30d5bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ompl_planner.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class GeneralConstraint : public ob::Constraint {
f(x, out);
}

void jacobian(const Eigen::Ref<const Eigen::VectorXd> &x, Eigen::Ref<Eigen::MatrixXd> out) const override {
void jacobian(const Eigen::Ref<const Eigen::VectorXd> &x, Eigen::Ref<Eigen::VectorXd> out) const override {
j(x, out);
}
};
Expand Down

0 comments on commit b30d5bf

Please sign in to comment.