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

[test] fix construction of NewtonSolver for 2p incompressible test

Need to pass the `TimeLoop`.
parent fe3262d9
No related branches found
No related tags found
1 merge request!814[test] fix construction of NewtonSolver for 2p incompressible test
...@@ -163,7 +163,7 @@ int main(int argc, char** argv) try ...@@ -163,7 +163,7 @@ int main(int argc, char** argv) try
// the non-linear solver // the non-linear solver
using NewtonSolver = Dumux::NewtonSolver<Assembler, LinearSolver>; using NewtonSolver = Dumux::NewtonSolver<Assembler, LinearSolver>;
NewtonSolver nonLinearSolver(assembler, linearSolver); NewtonSolver nonLinearSolver(assembler, linearSolver, timeLoop);
// time loop // time loop
timeLoop->start(); do timeLoop->start(); do
......
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