]> https://gitweb.dealii.org/ - dealii.git/commitdiff
rename function to extract_locally_relevant_level_dofs
authorTimo Heister <timo.heister@gmail.com>
Fri, 23 Oct 2015 15:32:10 +0000 (11:32 -0400)
committerTimo Heister <timo.heister@gmail.com>
Fri, 23 Oct 2015 15:32:10 +0000 (11:32 -0400)
examples/step-50/step-50.cc
include/deal.II/dofs/dof_tools.h
source/dofs/dof_tools.cc
source/dofs/dof_tools.inst.in
tests/multigrid/constrained_dofs_01.cc

index 86364293c6213bfcd2495b5cce020507cfd233c2..d031751c103cda264cc72fd082c0a3c4a2360e76 100644 (file)
@@ -526,7 +526,7 @@ namespace Step50
     for (unsigned int level=0; level<triangulation.n_global_levels(); ++level)
       {
         IndexSet dofset;
-        DoFTools::extract_locally_relevant_mg_dofs (mg_dof_handler, level, dofset);
+        DoFTools::extract_locally_relevant_level_dofs (mg_dof_handler, level, dofset);
         boundary_constraints[level].reinit(dofset);
         boundary_constraints[level].add_lines (mg_constrained_dofs.get_refinement_edge_indices(level));
         boundary_constraints[level].add_lines (mg_constrained_dofs.get_boundary_indices(level));
index 562e7b58e0dc05a843d8ea692a3b921b5f434606..efb014f628bfda3006ccdfe2b62ba13e3e40c121 100644 (file)
@@ -1459,9 +1459,9 @@ namespace DoFTools
    */
   template <class DH>
   void
-  extract_locally_relevant_mg_dofs (const DH &dof_handler,
-                                    const unsigned int level,
-                                    IndexSet &dof_set);
+  extract_locally_relevant_level_dofs (const DH &dof_handler,
+                                       const unsigned int level,
+                                       IndexSet &dof_set);
 
 
   /**
index 7ae323db0de0ae848aab9085acae07c8e0d997d2..e494928d497cd7659338e63e4935272da7f71005 100644 (file)
@@ -971,9 +971,9 @@ namespace DoFTools
 
   template <class DH>
   void
-  extract_locally_relevant_mg_dofs (const DH &dof_handler,
-                                    const unsigned int level,
-                                    IndexSet &dof_set)
+  extract_locally_relevant_level_dofs (const DH &dof_handler,
+                                       const unsigned int level,
+                                       IndexSet &dof_set)
   {
     // collect all the locally owned dofs
     dof_set = dof_handler.locally_owned_mg_dofs(level);
index 4b3b542cbb5872594978baac20ca3b10de5d639e..9fcb343179125d84bdc36f6fea5649f859843566 100644 (file)
@@ -235,7 +235,7 @@ DoFTools::extract_locally_relevant_dofs<hp::DoFHandler<deal_II_dimension> >
 
 template
 void
-DoFTools::extract_locally_relevant_mg_dofs<DoFHandler<deal_II_dimension> >
+DoFTools::extract_locally_relevant_level_dofs<DoFHandler<deal_II_dimension> >
 (const DoFHandler<deal_II_dimension> & dof_handler,
  const unsigned int level,
  IndexSet & dof_set);
index 2030eb2ae35a0270600eef19da8b5e9406686fd1..77464a83f896f3dd611ce85294abb5e7c943019d 100644 (file)
@@ -157,9 +157,9 @@ void check_fe(FiniteElement<dim> &fe)
 
 
       IndexSet relevant;
-      DoFTools::extract_locally_relevant_mg_dofs (dofh,
-                                                  level,
-                                                  relevant);
+      DoFTools::extract_locally_relevant_level_dofs (dofh,
+                                                     level,
+                                                     relevant);
       deallog << "relevant:" << std::endl;
       relevant.print(deallog);
 

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.