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

wrong call to solver backend fixed in mimetic model

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@5805 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 17e40c3c
No related branches found
No related tags found
No related merge requests found
...@@ -239,7 +239,7 @@ void MimeticPressure2P<TypeTag>::solve() ...@@ -239,7 +239,7 @@ void MimeticPressure2P<TypeTag>::solve()
std::cout << "MimeticPressure2P: solve for pressure" << std::endl; std::cout << "MimeticPressure2P: solve for pressure" << std::endl;
Solver solver(problem_); Solver solver(problem_);
solver.solve(A_, problem_.variables().pressure(), f_); solver.solve(*A_, problem_.variables().pressure(), f_);
return; return;
} }
......
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