From b3c57f78eae9552d60d7a98d2e28b87743620fc6 Mon Sep 17 00:00:00 2001 From: Jonathan Youett <youett@math.fu-berlin.de> Date: Wed, 30 Aug 2017 11:04:19 +0200 Subject: [PATCH] Properly initialise all members in constructor --- dune/solvers/solvers/quadraticipopt.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/dune/solvers/solvers/quadraticipopt.hh b/dune/solvers/solvers/quadraticipopt.hh index 54a49cb5..ba06aa17 100644 --- a/dune/solvers/solvers/quadraticipopt.hh +++ b/dune/solvers/solvers/quadraticipopt.hh @@ -648,6 +648,7 @@ public: /** \brief Default constructor */ QuadraticIPOptSolver () : LinearSolver<MatrixType,VectorType>(NumProc::FULL), + tolerance_(1e-8), maxIterations_(100), hessian_(NULL), rhs_(NULL), obstacles_(NULL), linearSolverType_(""), -- GitLab