From 02134ee962c3bb96560943dc664f32e2b075c7b6 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 19 Dec 2022 09:39:07 -0500 Subject: [PATCH] avoid deprecated functions in tests fixup fixup --- tests/quick_tests/sundials-ida.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }; -- 2.39.5