From: wolf Date: Thu, 16 Oct 2003 14:18:17 +0000 (+0000) Subject: Rename function. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=102c0ff385e8f20c04e26a106a1047a71271a251;p=dealii-svn.git Rename function. git-svn-id: https://svn.dealii.org/trunk@8093 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/mesh_3d_2.cc b/tests/bits/mesh_3d_2.cc index 5817ae236a..c2fb2418a1 100644 --- a/tests/bits/mesh_3d_2.cc +++ b/tests/bits/mesh_3d_2.cc @@ -59,14 +59,14 @@ int main () << " -> " << cell->quad(i)->vertex_index(3) << std::endl << " orientation = " - << (cell->get_face_orientation(i) ? "true" : "false") + << (cell->face_orientation(i) ? "true" : "false") << std::endl; } // we know that from the second // cell, the common face must have // wrong orientation. check this - Assert ((++coarse_grid.begin_active())->get_face_orientation(4) + Assert ((++coarse_grid.begin_active())->face_orientation(4) == false, ExcInternalError()); } diff --git a/tests/bits/mesh_3d_4.cc b/tests/bits/mesh_3d_4.cc index f0f3ca5524..694dfa9f0a 100644 --- a/tests/bits/mesh_3d_4.cc +++ b/tests/bits/mesh_3d_4.cc @@ -36,7 +36,7 @@ unsigned int count_wrong_faces (const Triangulation<3> &tria) for (Triangulation<3>::active_cell_iterator cell=tria.begin_active(); cell != tria.end(); ++cell) for (unsigned int f=0; f::faces_per_cell; ++f) - if (cell->get_face_orientation(f) == false) + if (cell->face_orientation(f) == false) ++count; return count; } diff --git a/tests/bits/mesh_3d_5.cc b/tests/bits/mesh_3d_5.cc index 419ed55a55..ad1d0119df 100644 --- a/tests/bits/mesh_3d_5.cc +++ b/tests/bits/mesh_3d_5.cc @@ -37,9 +37,9 @@ void check_this (Triangulation<3> &tria) if (cell->has_children()) for (unsigned int c=0; c::subfaces_per_face; ++c) { - Assert (cell->get_face_orientation(f) == + Assert (cell->face_orientation(f) == cell->child(GeometryInfo<3>::child_cell_on_face(f,c)) - ->get_face_orientation(f), + ->face_orientation(f), ExcInternalError()); deallog << "Cell << " << cell << ", face " << f diff --git a/tests/bits/q_points.cc b/tests/bits/q_points.cc index 3c826dd382..b97d84309f 100644 --- a/tests/bits/q_points.cc +++ b/tests/bits/q_points.cc @@ -93,9 +93,9 @@ void check (Triangulation<3> &tria) // properly oriented // faces. mesh_3d_7 does it // for mis-oriented faces - Assert (cell->get_face_orientation(f) == true, + Assert (cell->face_orientation(f) == true, ExcInternalError()); - Assert (cell->neighbor(f)->get_face_orientation(nn) == true, + Assert (cell->neighbor(f)->face_orientation(nn) == true, ExcInternalError()); fe_face_values1.reinit (cell, f);