From: Timo Heister Date: Mon, 19 Dec 2022 14:39:07 +0000 (-0500) Subject: avoid deprecated functions in tests X-Git-Tag: v9.5.0-rc1~723^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02134ee962c3bb96560943dc664f32e2b075c7b6;p=dealii.git avoid deprecated functions in tests fixup fixup --- diff --git a/tests/quick_tests/sundials-ida.cc b/tests/quick_tests/sundials-ida.cc index 01410e154d..6cd984410e 100644 --- a/tests/quick_tests/sundials-ida.cc +++ b/tests/quick_tests/sundials-ida.cc @@ -98,9 +98,9 @@ public: return 0; }; - time_stepper.solve_jacobian_system = [&](const VectorType &src, - VectorType & dst) -> int { - Jinv.vmult(dst, src); + time_stepper.solve_with_jacobian = + [&](const VectorType &rhs, VectorType &dst, const double /*tol*/) -> int { + Jinv.vmult(dst, rhs); return 0; };