diff --git a/dune/solvers/solvers/quadraticipopt.hh b/dune/solvers/solvers/quadraticipopt.hh index 9b0e68d63d3624e6b225e841e82ea79f78ce6438..4159f2b16a2460f36a1fd14932c989266c652374 100644 --- a/dune/solvers/solvers/quadraticipopt.hh +++ b/dune/solvers/solvers/quadraticipopt.hh @@ -527,8 +527,8 @@ public: /** \brief Constructor for a linear problem */ QuadraticIPOptSolver (const MatrixType& hessian, VectorType& x, - const VectorType& rhs) - : IterativeSolver<VectorType>(1e-8, 100, NumProc::FULL), + const VectorType& rhs, NumProc::VerbosityMode verbosity=NumProc::FULL) + : IterativeSolver<VectorType>(1e-8, 100, verbosity), hessian_(&hessian), rhs_(&rhs), obstacles_(NULL) { this->x_ = &x;