From bce79f70b67e0a72e11b7a4a05490b082f1a26c2 Mon Sep 17 00:00:00 2001 From: Timo Koch <timokoch@math.uio.no> Date: Thu, 25 Nov 2021 13:12:00 +0000 Subject: [PATCH] [test][cleanup] Remove parameter dependency This was only needed for global defaults which have been removed for the Newton. --- test/timestepping/test_timestepmethods.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/timestepping/test_timestepmethods.cc b/test/timestepping/test_timestepmethods.cc index f5baf1eee1..145b79aaf9 100644 --- a/test/timestepping/test_timestepmethods.cc +++ b/test/timestepping/test_timestepmethods.cc @@ -126,10 +126,6 @@ int main(int argc, char* argv[]) // maybe initialize MPI Dune::MPIHelper::instance(argc, argv); - // initialize parameters - // TODO Try to remove this once the Newton does not depend on global default parameters anymore (#1003) - Parameters::init(argc, argv); - using Assembler = ScalarAssembler; using LinearSolver = ScalarLinearSolver; using NewtonSolver = NewtonSolver<Assembler, LinearSolver, DefaultPartialReassembler>; -- GitLab