From 0f8c3299b4b4123f210ad808b2821354fecc2e31 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Wed, 29 Jun 2022 10:41:38 -0400 Subject: [PATCH] Remove Arkode::reinit_vector --- include/deal.II/sundials/arkode.h | 11 ----------- source/sundials/arkode.cc | 4 ---- 2 files changed, 15 deletions(-) diff --git a/include/deal.II/sundials/arkode.h b/include/deal.II/sundials/arkode.h index ed6f30ff01..b001106d8c 100644 --- a/include/deal.II/sundials/arkode.h +++ b/include/deal.II/sundials/arkode.h @@ -569,17 +569,6 @@ namespace SUNDIALS void * get_arkode_memory() const; - /** - * A function object that was used to `reinit` the given vector. Setting - * this field does no longer have any effect and all auxiliary vectors are - * reinit-ed automatically based on the user-supplied vector in solve_ode(). - * - * @deprecated This function is no longer used and can be safely removed in - * user code. - */ - DEAL_II_DEPRECATED - std::function reinit_vector; - /** * A function object that users may supply and that is intended to compute * the explicit part of the IVP right hand side. Sets $explicit_f = f_E(t, diff --git a/source/sundials/arkode.cc b/source/sundials/arkode.cc index c72141037c..9efcc895d6 100644 --- a/source/sundials/arkode.cc +++ b/source/sundials/arkode.cc @@ -679,10 +679,6 @@ namespace SUNDIALS void ARKode::set_functions_to_trigger_an_assert() { - reinit_vector = [](VectorType &) { - AssertThrow(false, ExcFunctionNotProvided("reinit_vector")); - }; - solver_should_restart = [](const double, VectorType &) -> bool { return false; }; -- 2.39.5