From 8c4461d0d9fc07e90397aae9ff628a6631441f70 Mon Sep 17 00:00:00 2001 From: Johannes Heinz <43043310+jh66637@users.noreply.github.com> Date: Fri, 2 Feb 2024 10:12:13 +0100 Subject: [PATCH] Use correct function names in test --- tests/matrix_free/fe_remote_evaluation_03.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/matrix_free/fe_remote_evaluation_03.cc b/tests/matrix_free/fe_remote_evaluation_03.cc index 9d12be17e6..caceecd986 100644 --- a/tests/matrix_free/fe_remote_evaluation_03.cc +++ b/tests/matrix_free/fe_remote_evaluation_03.cc @@ -15,8 +15,8 @@ // This test checks the correct setup of FERemoteEvaluationCommunicator // via the factory functions -// setup_remote_communicator_faces_point_to_point_interpolation() -// and setup_remote_communicator_faces_nitsche_type_mortaring(). +// compute_remote_communicator_faces_point_to_point_interpolation() +// and compute_remote_communicator_faces_nitsche_type_mortaring(). #include @@ -78,7 +78,7 @@ test_point_to_point(const MatrixFree &matrix_free) })); auto remote_communicator = - Utilities::setup_remote_communicator_faces_point_to_point_interpolation( + Utilities::compute_remote_communicator_faces_point_to_point_interpolation( matrix_free, non_matching_faces_marked_vertices); // 1) Allocate vectors and interpolate grid coordinates in DoFs. @@ -165,7 +165,7 @@ test_nitsche_type_mortaring(const MatrixFree &matrix_free) additional_data); auto remote_communicator = - Utilities::setup_remote_communicator_faces_nitsche_type_mortaring( + Utilities::compute_remote_communicator_faces_nitsche_type_mortaring( matrix_free, non_matching_faces_marked_vertices, 4, 0, &nm_mapping_info); // 1) Allocate vectors and interpolate grid coordinates in DoFs. -- 2.39.5