From 6c49db47a678a4047247f5e1119e6744679331c8 Mon Sep 17 00:00:00 2001 From: Oliver Sander <oliver.sander@tu-dresden.de> Date: Thu, 12 Jan 2017 14:42:44 +0100 Subject: [PATCH] Fix typo --- dune/solvers/solvers/quadraticipopt.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/solvers/solvers/quadraticipopt.hh b/dune/solvers/solvers/quadraticipopt.hh index 3b9395cd..4cbd5a77 100644 --- a/dune/solvers/solvers/quadraticipopt.hh +++ b/dune/solvers/solvers/quadraticipopt.hh @@ -770,7 +770,7 @@ void QuadraticIPOptSolver<MatrixType,VectorType,JacobianType>::solve() DUNE_THROW(Dune::Exception, "IPOpt returned 'Invalid_Option' error!"); if (status == Ipopt::Solved_To_Acceptable_Level) - std::cout<<"WARNING: Desired tolerance could not be reached, but still accetable tolerance is reached.\n"; + std::cout<<"WARNING: Desired tolerance could not be reached, but still acceptable tolerance is reached.\n"; else if (status == Ipopt::Search_Direction_Becomes_Too_Small) { std::array<Ipopt::Number,4> inf; app->Statistics()->Infeasibilities(inf[0],inf[1],inf[2],inf[3]); -- GitLab