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

Fix feature printed message

parent 72d82220
No related branches found
No related tags found
1 merge request!447new tag
Pipeline #9705 passed
This commit is part of merge request !447. Comments created here will be created in the context of that merge request.
...@@ -198,7 +198,7 @@ void FeatureBase::link(CaptureBasePtr _cpt_ptr) ...@@ -198,7 +198,7 @@ void FeatureBase::link(CaptureBasePtr _cpt_ptr)
} }
void FeatureBase::printHeader(int _depth, bool _constr_by, bool _metric, bool _state_blocks, std::ostream& _stream, std::string _tabs) const void FeatureBase::printHeader(int _depth, bool _constr_by, bool _metric, bool _state_blocks, std::ostream& _stream, std::string _tabs) const
{ {
_stream << _tabs << "Ftr" << id() << " trk" << trackId() << " " << getType() << ((_depth < 4) ? " -- " + std::to_string(getFactorList().size()) + "c " : ""); _stream << _tabs << "Ftr" << id() << " trk" << trackId() << " " << getType() << ((_depth < 4) ? " -- " + std::to_string(getFactorList().size()) + "fac " : "");
if (_constr_by) if (_constr_by)
{ {
_stream << " <--\t"; _stream << " <--\t";
......
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