Skip to content
Snippets Groups Projects
Commit de67a76b authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Merge branch 'devel' of...

Merge branch 'devel' of ssh://gitlab.iri.upc.edu:2202/mobile_robotics/wolf_projects/wolf_lib/wolf into devel
parents 8fdb78af 3b536561
Branches devel
No related tags found
1 merge request!466devel->main
...@@ -551,7 +551,7 @@ void SensorBase::printState (bool _metric, bool _state_blocks, std::ostream& _st ...@@ -551,7 +551,7 @@ void SensorBase::printState (bool _metric, bool _state_blocks, std::ostream& _st
{ {
auto sb = getStateBlockDynamic(key); auto sb = getStateBlockDynamic(key);
if (sb) if (sb)
_stream << _tabs << " " << key << " [" << (sb->isFixed() ? "Fix" : "Est") << "] = ( " _stream << _tabs << " " << key << " [" << (sb->isFixed() ? "Fix" : "Est") << ", " << (isStateBlockDynamic(key) ? "Dyn" : "Sta") << "] = ( "
<< std::setprecision(3) << sb->getState().transpose() << " )" << " @ " << sb << std::endl; << std::setprecision(3) << sb->getState().transpose() << " )" << " @ " << sb << std::endl;
} }
} }
...@@ -567,7 +567,7 @@ void SensorBase::printState (bool _metric, bool _state_blocks, std::ostream& _st ...@@ -567,7 +567,7 @@ void SensorBase::printState (bool _metric, bool _state_blocks, std::ostream& _st
{ {
auto sb = getStateBlockDynamic(key); auto sb = getStateBlockDynamic(key);
if (sb) if (sb)
_stream << " " << key << " [" << (sb->isFixed() ? "Fix" : "Est") << "] @ " << sb; _stream << " " << key << " [" << (sb->isFixed() ? "Fix" : "Est") << ", " << (isStateBlockDynamic(key) ? "Dyn" : "Sta") << "] @ " << sb;
} }
_stream << std::endl; _stream << std::endl;
} }
......
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