From: Johannes Heinz <43043310+jh66637@users.noreply.github.com> Date: Fri, 2 Feb 2024 09:12:13 +0000 (+0100) Subject: Use correct function names in test X-Git-Tag: relicensing~78^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16587%2Fhead;p=dealii.git Use correct function names in test --- 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.