From f2d70881c6ab57a952e3b7301880bb2f36331597 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Vallv=C3=A9=20Navarro?= <jvallve@iri.upc.edu> Date: Fri, 8 Feb 2019 15:56:18 +0100 Subject: [PATCH] fixed problem to new function name --- src/problem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problem.cpp b/src/problem.cpp index fec23b174..f80a99b4d 100644 --- a/src/problem.cpp +++ b/src/problem.cpp @@ -754,7 +754,7 @@ void Problem::print(int depth, bool constr_by, bool metric, bool state_blocks) { if (i==0) cout << " Extr " << (S->isExtrinsicDynamic() ? "[Dyn]" : "[Sta]") << " = ["; if (i==2) cout << " Intr " << (S->isIntrinsicDynamic() ? "[Dyn]" : "[Sta]") << " = ["; - auto sb = S->getStateBlockPtrDynamic(i); + auto sb = S->getStateBlockPtr(i); if (sb) { cout << (sb->isFixed() ? " Fix( " : " Est( ") << sb->getState().transpose() << " )"; -- GitLab