From cf37dca4ede8d0666bfe80a3b15d21800af2c90c Mon Sep 17 00:00:00 2001 From: Bernd Flemisch <bernd@iws.uni-stuttgart.de> Date: Tue, 27 Feb 2018 15:19:49 +0100 Subject: [PATCH] [test] fix construction of NewtonSolver for 2p incompressible test Need to pass the `TimeLoop`. --- test/porousmediumflow/2p/implicit/incompressible/test_2p_fv.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/porousmediumflow/2p/implicit/incompressible/test_2p_fv.cc b/test/porousmediumflow/2p/implicit/incompressible/test_2p_fv.cc index 89c11fa3f5..36fdc3307a 100644 --- a/test/porousmediumflow/2p/implicit/incompressible/test_2p_fv.cc +++ b/test/porousmediumflow/2p/implicit/incompressible/test_2p_fv.cc @@ -163,7 +163,7 @@ int main(int argc, char** argv) try // the non-linear solver using NewtonSolver = Dumux::NewtonSolver<Assembler, LinearSolver>; - NewtonSolver nonLinearSolver(assembler, linearSolver); + NewtonSolver nonLinearSolver(assembler, linearSolver, timeLoop); // time loop timeLoop->start(); do -- GitLab