From 0f15659e7db3dc361c70559ee25a6c3da881c86d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 9 Jul 2024 10:46:20 -0600 Subject: [PATCH] Adjust a test. --- tests/petsc/petsc_ts_03.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/petsc/petsc_ts_03.cc b/tests/petsc/petsc_ts_03.cc index c2f9f7c72b..56165a34b1 100644 --- a/tests/petsc/petsc_ts_03.cc +++ b/tests/petsc/petsc_ts_03.cc @@ -187,8 +187,10 @@ public: }; // This callback is called if decide_and_prepare_for_remeshing returns true. - time_stepper.interpolate = [&](const std::vector &all_in, - std::vector &all_out) -> void { + time_stepper.transfer_solution_vectors_to_new_mesh = + [&](const double /* t */, + const std::vector &all_in, + std::vector &all_out) -> void { deallog << "Interpolate" << std::endl; for (auto &v : all_in) all_out.push_back(v); -- 2.39.5