Skip to content
Snippets Groups Projects

Const correctness in iterative solvers

Merged Nils-Arne Dreier requested to merge const_correctness_in_iterative_solvers into master
All threads resolved!
Files
4
@@ -68,7 +68,7 @@ int main(int argc, char** argv)
typedef Dune::MatrixAdapter<BCRSMat,BVector,BVector> Operator;
BCRSMat mat;
Operator fop(mat);
const Operator fop(mat);
BVector b(N*N), x(N*N);
setupLaplacian(mat,N);
Loading