Skip to content
Snippets Groups Projects
Commit e9a58a4d authored by Joaquim Casals Buñuel's avatar Joaquim Casals Buñuel
Browse files

Merge branch 'devel' into refactor-odometry

parents 4307d83c e7363aa5
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,7 @@ macro(csm_report_not_found REASON_MSG) ...@@ -47,7 +47,7 @@ macro(csm_report_not_found REASON_MSG)
# FindPackage() use the camelcase library name, not uppercase. # FindPackage() use the camelcase library name, not uppercase.
if (csm_FIND_QUIETLY) if (csm_FIND_QUIETLY)
message(STATUS "Failed to find csm- " ${REASON_MSG} ${ARGN}) message(STATUS "Failed to find csm- " ${REASON_MSG} ${ARGN})
else (csm_FIND_REQUIRED) elseif (csm_FIND_REQUIRED)
message(FATAL_ERROR "Failed to find csm - " ${REASON_MSG} ${ARGN}) message(FATAL_ERROR "Failed to find csm - " ${REASON_MSG} ${ARGN})
else() else()
# Neither QUIETLY nor REQUIRED, use SEND_ERROR which emits an error # Neither QUIETLY nor REQUIRED, use SEND_ERROR which emits an error
......
...@@ -31,6 +31,11 @@ class LocalParametrizationPolylineExtreme : public LocalParametrizationBase ...@@ -31,6 +31,11 @@ class LocalParametrizationPolylineExtreme : public LocalParametrizationBase
bool minus(Eigen::Map<const Eigen::VectorXd>& _point1, bool minus(Eigen::Map<const Eigen::VectorXd>& _point1,
Eigen::Map<const Eigen::VectorXd>& _point2, Eigen::Map<const Eigen::VectorXd>& _point2,
Eigen::Map<Eigen::VectorXd>& _delta_theta) override; Eigen::Map<Eigen::VectorXd>& _delta_theta) override;
bool isValid(const Eigen::VectorXd& _state, double tolerance) override
{
return _state.size() == global_size_;
}
}; };
} // namespace wolf } // namespace wolf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment