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

Fix cout of constraint pointer in check()

parent 2196aa95
No related branches found
No related tags found
No related merge requests found
...@@ -961,7 +961,7 @@ bool Problem::check(int verbose_level) ...@@ -961,7 +961,7 @@ bool Problem::check(int verbose_level)
for (auto c : f->getConstraintList()) for (auto c : f->getConstraintList())
{ {
if (verbose_level > 0) if (verbose_level > 0)
cout << " c" << c->id() << " @ " << C.get(); cout << " c" << c->id() << " @ " << c.get();
auto Fo = c->getFrameOtherPtr(); auto Fo = c->getFrameOtherPtr();
auto fo = c->getFeatureOtherPtr(); auto fo = c->getFeatureOtherPtr();
......
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