Skip to content
Snippets Groups Projects
Commit e2f408b9 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

SuperLUBackend: allow verbosity

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7757 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 48c93412
No related branches found
No related tags found
No related merge requests found
......@@ -538,7 +538,8 @@ public:
typedef typename Dune::FieldMatrix<Scalar, blockSize, blockSize> MatrixBlock;
typedef typename Dune::BCRSMatrix<MatrixBlock> ISTLMatrix;
Dune::SuperLU<ISTLMatrix> solver(A);
int verbosity = GET_PARAM_FROM_GROUP(TypeTag, int, LinearSolver, Verbosity);
Dune::SuperLU<ISTLMatrix> solver(A, verbosity > 0);
solver.apply(x, bTmp, result_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment