From 608387862578f49529a38c400b84c0364673ef95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Sol=C3=A0?= <jsola@iri.upc.edu> Date: Mon, 26 Feb 2018 23:37:05 +0100 Subject: [PATCH] Print feature track --- src/problem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problem.cpp b/src/problem.cpp index 2daecd38a..92f7b0e0d 100644 --- a/src/problem.cpp +++ b/src/problem.cpp @@ -867,7 +867,7 @@ void Problem::print(int depth, bool constr_by, bool metric, bool state_blocks) // Features for (auto f : C->getFeatureList()) { - cout << " f" << f->id() << " " << f->getType() << ((depth < 4) ? " -- " + std::to_string(f->getConstraintList().size()) + "c " : ""); + cout << " f" << f->id() << " trk" << f->trackId() << " " << f->getType() << ((depth < 4) ? " -- " + std::to_string(f->getConstraintList().size()) + "c " : ""); if (constr_by) { cout << " <--\t"; -- GitLab