From 121feb2281080a31b23966c8396b34eec5b77ef1 Mon Sep 17 00:00:00 2001 From: krunalchande Date: Tue, 23 Dec 2014 16:14:07 -0500 Subject: [PATCH] disable printing --- gtsam_unstable/linear/QPSolver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam_unstable/linear/QPSolver.cpp b/gtsam_unstable/linear/QPSolver.cpp index e5b4cd801..53d8d5c4c 100644 --- a/gtsam_unstable/linear/QPSolver.cpp +++ b/gtsam_unstable/linear/QPSolver.cpp @@ -156,7 +156,7 @@ boost::tuple QPSolver::computeStepSize( //****************************************************************************** QPState QPSolver::iterate(const QPState& state) const { - static bool debug = true; + static bool debug = false; // Solve with the current working set VectorValues newValues = solveWithCurrentWorkingSet(state.workingSet);