You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to build GTDynamics, I got the following error:
In file included from /home/adam/GTDynamics/gtdynamics/dynamics/DynamicsGraph.cpp:34:
/home/adam/GTDynamics/gtdynamics/utils/JsonSaver.h: In static member function ‘static std::string gtdynamics::JsonSaver::GetNoiseModel(const shared_ptr&)’:
/home/adam/GTDynamics/gtdynamics/utils/JsonSaver.h:262:22: error: ‘format’ is not a member of ‘boost’; did you mean ‘boost::timer::format’?
262 | ss << boost::format("isotropic dim=%1% sigma=%2%") %
|
Adding #include <boost/format.hpp> to DynamicsGraph.h seems to fix the issue.
The text was updated successfully, but these errors were encountered:
Ah, yes - I have removed that include from Matrix.h in gtsam. Sorry!
Feel free to make a PR but that file should be in a cpp file where used if possible to avoid header bloat.
Trying to build GTDynamics, I got the following error:
Adding
#include <boost/format.hpp>
toDynamicsGraph.h
seems to fix the issue.The text was updated successfully, but these errors were encountered: