Skip to content
Snippets Groups Projects
Commit 4c7ccc40 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Make IPOpt use the "mumps" linear solver

Because I am using the Debian version of IPOpt now.  Finally it works!
But the Debian version can only use "mumps", not the default "ma27".

[[Imported from SVN: r10105]]
parent 396b7ddb
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,7 @@ setup(const typename BasisType::GridView::Grid& grid,
QuadraticIPOptSolver<MatrixType, CorrectionType>* baseSolver = new QuadraticIPOptSolver<MatrixType,CorrectionType>;
baseSolver->verbosity_ = NumProc::QUIET;
baseSolver->tolerance_ = baseTolerance;
baseSolver->linearSolverType_ = "mumps";
#else
// First create a Gauss-seidel base solver
TrustRegionGSStep<MatrixType, CorrectionType>* baseSolverStep = new TrustRegionGSStep<MatrixType, CorrectionType>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment