]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Rename function.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 16 Oct 2003 14:18:17 +0000 (14:18 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 16 Oct 2003 14:18:17 +0000 (14:18 +0000)
git-svn-id: https://svn.dealii.org/trunk@8093 0785d39b-7218-0410-832d-ea1e28bc413d

tests/bits/mesh_3d_2.cc
tests/bits/mesh_3d_4.cc
tests/bits/mesh_3d_5.cc
tests/bits/q_points.cc

index 5817ae236a23566d98ca6738e30e39f60812c18c..c2fb2418a1b2654a6b18d80ad04c02a832e52cb0 100644 (file)
@@ -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());
 }
index f0f3ca5524e98fc62500adb2b604203a5a58617b..694dfa9f0a875aedd8530331d5970cc15c457efa 100644 (file)
@@ -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<GeometryInfo<3>::faces_per_cell; ++f)
-      if (cell->get_face_orientation(f) == false)
+      if (cell->face_orientation(f) == false)
         ++count;
   return count;
 }
index 419ed55a55a8ee3ce139bfc9835adc08dee31ad9..ad1d0119dfb0a622c4de93ffa51fb3668c058837 100644 (file)
@@ -37,9 +37,9 @@ void check_this (Triangulation<3> &tria)
       if (cell->has_children())
         for (unsigned int c=0; c<GeometryInfo<3>::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
index 3c826dd3822e02287bc74459d5d9c88a239b69f6..b97d84309f2288cef7f9b3010972c2048a2fe590 100644 (file)
@@ -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);

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.