]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Rename the DoFRenumbering::renumber_* functions to DoFRenumbering::*
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 20 Apr 1999 11:58:36 +0000 (11:58 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 20 Apr 1999 11:58:36 +0000 (11:58 +0000)
git-svn-id: https://svn.dealii.org/trunk@1191 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/deal.II/Attic/examples/dof/dof_test.cc
deal.II/deal.II/include/numerics/dof_renumbering.h
deal.II/deal.II/source/dofs/dof_renumbering.cc
tests/big-tests/dof/dof_test.cc
tests/deal.II/dof_test.cc

index 8ca5178abfabad62e4f98de2020bfe16b2a5e373..d9ee2ee997af2f93d1a671767827ada335b79abe 100644 (file)
@@ -354,7 +354,7 @@ void TestCases<dim>::run (ParameterHandler &prm) {
   dof->distribute_dofs (fe);
 
   cout << "    Renumbering degrees of freedom..." << endl;
-  DoFRenumbering::renumber_Cuthill_McKee (*dof);
+  DoFRenumbering::Cuthill_McKee (*dof);
     
   SparseMatrixStruct sparsity (dof->n_dofs(),
                               dof->max_couplings_between_dofs());
index 62c748c76180a633c42da87e90cc12bab3b51649..1b8bc3d71d60dfd940d5122dd3d39896cdd496b6 100644 (file)
@@ -155,10 +155,10 @@ class DoFRenumbering
                                      * different methods.
                                      */
     template <int dim>
-    static void renumber_Cuthill_McKee (DoFHandler<dim>   &dof_handler,
-                                       const bool         reversed_numbering = false,
-                                       const bool         use_constraints    = false,
-                                       const vector<int> &starting_indices   = vector<int>());
+    static void Cuthill_McKee (DoFHandler<dim>   &dof_handler,
+                              const bool         reversed_numbering = false,
+                              const bool         use_constraints    = false,
+                              const vector<int> &starting_indices   = vector<int>());
 
                                     /**
                                      * Renumber the degrees of freedom
@@ -180,10 +180,10 @@ class DoFRenumbering
                                      * different methods.
                                      */
     template <int dim>
-    static void renumber_Cuthill_McKee (MGDoFHandler<dim> &dof_handler,
-                                       const unsigned int level,
-                                       const bool         reversed_numbering = false,
-                                       const vector<int> &starting_indices   = vector<int> ());
+    static void Cuthill_McKee (MGDoFHandler<dim> &dof_handler,
+                              const unsigned int level,
+                              const bool         reversed_numbering = false,
+                              const vector<int> &starting_indices   = vector<int> ());
 
     
                                     /**
index ca68898d72101c1573308fda24cd6141de2aad12..8a50499ae900d2aebc9e5063207f0ffd6b686da5 100644 (file)
 
 
 template <int dim>
-void DoFRenumbering::renumber_Cuthill_McKee (DoFHandler<dim>   &dof_handler,
-                                            const bool         reversed_numbering,
-                                            const bool         use_constraints,
-                                            const vector<int> &starting_indices) {
+void DoFRenumbering::Cuthill_McKee (DoFHandler<dim>   &dof_handler,
+                                   const bool         reversed_numbering,
+                                   const bool         use_constraints,
+                                   const vector<int> &starting_indices) {
                                   // make the connection graph
   SparseMatrixStruct sparsity (dof_handler.n_dofs(),
                               dof_handler.max_couplings_between_dofs());
@@ -201,10 +201,10 @@ void DoFRenumbering::renumber_Cuthill_McKee (DoFHandler<dim>   &dof_handler,
 
 
 template <int dim>
-void DoFRenumbering::renumber_Cuthill_McKee (MGDoFHandler<dim>      &dof_handler,
-                                            const unsigned int      level,
-                                            const bool              reversed_numbering,
-                                            const vector<int>      &starting_indices) {
+void DoFRenumbering::Cuthill_McKee (MGDoFHandler<dim>      &dof_handler,
+                                   const unsigned int      level,
+                                   const bool              reversed_numbering,
+                                   const vector<int>      &starting_indices) {
                                   // make the connection graph
   SparseMatrixStruct sparsity (dof_handler.n_dofs(level),
                               dof_handler.max_couplings_between_dofs());
@@ -366,14 +366,14 @@ void DoFRenumbering::renumber_Cuthill_McKee (MGDoFHandler<dim>      &dof_handler
 
 // explicit instantiations
 template
-void DoFRenumbering::renumber_Cuthill_McKee (DoFHandler<deal_II_dimension> &dof_handler,
-                                            const bool                     reversed_numbering,
-                                            const bool                     use_constraints,
-                                            const vector<int>             &starting_indices);
+void DoFRenumbering::Cuthill_McKee (DoFHandler<deal_II_dimension> &dof_handler,
+                                   const bool                     reversed_numbering,
+                                   const bool                     use_constraints,
+                                   const vector<int>             &starting_indices);
 
 template
-void DoFRenumbering::renumber_Cuthill_McKee (MGDoFHandler<deal_II_dimension> &dof_handler,
-                                            const unsigned int               level,
-                                            const bool                       reversed_numbering,
-                                            const vector<int>               &starting_indices);
+void DoFRenumbering::Cuthill_McKee (MGDoFHandler<deal_II_dimension> &dof_handler,
+                                   const unsigned int               level,
+                                   const bool                       reversed_numbering,
+                                   const vector<int>               &starting_indices);
 
index 8ca5178abfabad62e4f98de2020bfe16b2a5e373..d9ee2ee997af2f93d1a671767827ada335b79abe 100644 (file)
@@ -354,7 +354,7 @@ void TestCases<dim>::run (ParameterHandler &prm) {
   dof->distribute_dofs (fe);
 
   cout << "    Renumbering degrees of freedom..." << endl;
-  DoFRenumbering::renumber_Cuthill_McKee (*dof);
+  DoFRenumbering::Cuthill_McKee (*dof);
     
   SparseMatrixStruct sparsity (dof->n_dofs(),
                               dof->max_couplings_between_dofs());
index e5f74da24382dd6a46235b38ce2617ce52cf5f1e..b975fd17e218554cfc7355230129d7d38a705394 100644 (file)
@@ -287,7 +287,7 @@ void TestCases<dim>::run (const unsigned int test_case) {
   dof->distribute_dofs (fe);
 
   cout << "    Renumbering degrees of freedom..." << endl;
-  DoFRenumbering::renumber_Cuthill_McKee (*dof);
+  DoFRenumbering::Cuthill_McKee (*dof);
     
   SparseMatrixStruct sparsity (dof->n_dofs(),
                               dof->max_couplings_between_dofs());

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.