]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Update for style. 4553/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Tue, 27 Jun 2017 12:55:07 +0000 (06:55 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Tue, 27 Jun 2017 14:23:40 +0000 (08:23 -0600)
include/deal.II/dofs/dof_handler.h
include/deal.II/hp/dof_handler.h

index 360461f0e06272c76d8ba82668f1bfe7b018e33b..c238e6f144ed512e3c0aef5c04a9f2c4a13128d6 100644 (file)
@@ -1139,6 +1139,8 @@ DoFHandler<dim,spacedim>::has_level_dofs() const
   return mg_number_cache.size()>0;
 }
 
+
+
 template <int dim, int spacedim>
 inline
 bool
@@ -1147,6 +1149,8 @@ DoFHandler<dim,spacedim>::has_active_dofs() const
   return number_cache.n_global_dofs>0;
 }
 
+
+
 template <int dim, int spacedim>
 inline
 types::global_dof_index
@@ -1155,6 +1159,8 @@ DoFHandler<dim,spacedim>::n_dofs () const
   return number_cache.n_global_dofs;
 }
 
+
+
 template<int dim, int spacedim>
 inline
 types::global_dof_index DoFHandler<dim, spacedim>::n_dofs (const unsigned int level) const
@@ -1165,6 +1171,7 @@ types::global_dof_index DoFHandler<dim, spacedim>::n_dofs (const unsigned int le
 }
 
 
+
 template <int dim, int spacedim>
 unsigned int
 DoFHandler<dim, spacedim>::n_locally_owned_dofs() const
@@ -1173,6 +1180,7 @@ DoFHandler<dim, spacedim>::n_locally_owned_dofs() const
 }
 
 
+
 template <int dim, int spacedim>
 const IndexSet &
 DoFHandler<dim, spacedim>::locally_owned_dofs() const
@@ -1180,14 +1188,19 @@ DoFHandler<dim, spacedim>::locally_owned_dofs() const
   return number_cache.locally_owned_dofs;
 }
 
+
+
 template <int dim, int spacedim>
 const IndexSet &
 DoFHandler<dim, spacedim>::locally_owned_mg_dofs(const unsigned int level) const
 {
-  Assert(level < this->get_triangulation().n_global_levels(), ExcMessage("invalid level in locally_owned_mg_dofs"));
+  Assert(level < this->get_triangulation().n_global_levels(),
+         ExcMessage("invalid level in locally_owned_mg_dofs"));
   return mg_number_cache[level].locally_owned_dofs;
 }
 
+
+
 template <int dim, int spacedim>
 const std::vector<types::global_dof_index> &
 DoFHandler<dim, spacedim>::n_locally_owned_dofs_per_processor() const
@@ -1196,6 +1209,7 @@ DoFHandler<dim, spacedim>::n_locally_owned_dofs_per_processor() const
 }
 
 
+
 template <int dim, int spacedim>
 const std::vector<IndexSet> &
 DoFHandler<dim, spacedim>::locally_owned_dofs_per_processor () const
@@ -1203,6 +1217,8 @@ DoFHandler<dim, spacedim>::locally_owned_dofs_per_processor () const
   return number_cache.locally_owned_dofs_per_processor;
 }
 
+
+
 template <int dim, int spacedim>
 const std::vector<IndexSet> &
 DoFHandler<dim, spacedim>::locally_owned_mg_dofs_per_processor (const unsigned int level) const
@@ -1212,12 +1228,14 @@ DoFHandler<dim, spacedim>::locally_owned_mg_dofs_per_processor (const unsigned i
 }
 
 
+
 template <int dim, int spacedim>
 inline
 const FiniteElement<dim,spacedim> &
 DoFHandler<dim,spacedim>::get_fe () const
 {
-  Assert(selected_fe!=nullptr, ExcMessage("You are trying to access the DoFHandler's FiniteElement object before it has been initialized."));
+  Assert(selected_fe!=nullptr,
+         ExcMessage("You are trying to access the DoFHandler's FiniteElement object before it has been initialized."));
   return *selected_fe;
 }
 
@@ -1243,6 +1261,7 @@ DoFHandler<dim,spacedim>::block_info () const
 }
 
 
+
 template <int dim, int spacedim>
 template <typename number>
 types::global_dof_index
@@ -1275,6 +1294,7 @@ namespace internal
 }
 
 
+
 template <int dim, int spacedim>
 template <class Archive>
 void DoFHandler<dim,spacedim>::save (Archive &ar,
@@ -1297,6 +1317,7 @@ void DoFHandler<dim,spacedim>::save (Archive &ar,
 }
 
 
+
 template <int dim, int spacedim>
 template <class Archive>
 void DoFHandler<dim,spacedim>::load (Archive &ar,
@@ -1340,28 +1361,32 @@ void DoFHandler<dim,spacedim>::load (Archive &ar,
 }
 
 
-template<int dim, int spacedim>
+
+
+template <int dim, int spacedim>
 inline
-types::global_dof_index DoFHandler<dim, spacedim>::MGVertexDoFs::get_index (
-  const unsigned int level,
-  const unsigned int dof_number) const
+types::global_dof_index
+DoFHandler<dim, spacedim>::MGVertexDoFs::get_index (const unsigned int level,
+                                                    const unsigned int dof_number) const
 {
   Assert ((level >= coarsest_level) && (level <= finest_level), ExcInvalidLevel (level));
   return indices[indices_offset[level - coarsest_level] + dof_number];
 }
 
 
+
 template<int dim, int spacedim>
 inline
-void DoFHandler<dim, spacedim>::MGVertexDoFs::set_index (
-  const unsigned int level,
-  const unsigned int dof_number,
-  const types::global_dof_index index)
+void
+DoFHandler<dim, spacedim>::MGVertexDoFs::set_index (const unsigned int level,
+                                                    const unsigned int dof_number,
+                                                    const types::global_dof_index index)
 {
   Assert ((level >= coarsest_level) && (level <= finest_level), ExcInvalidLevel (level));
   indices[indices_offset[level - coarsest_level] + dof_number] = index;
 }
 
+
 #endif // DOXYGEN
 
 DEAL_II_NAMESPACE_CLOSE
index 81e4da9484c75e6bc9283149d3b0d2b3df06fab4..a8f0b05c1ecb2c2d4808d4742e0b918922fe5dc9 100644 (file)
@@ -717,7 +717,7 @@ namespace hp
                     << "You tried to do something on level " << arg1
                     << ", but this level is empty.");
 
-  protected:
+  private:
 
     /**
      * Address of the triangulation to work on.
@@ -985,6 +985,7 @@ namespace hp
   }
 
 
+
   template <int dim, int spacedim>
   inline
   types::global_dof_index
@@ -994,6 +995,7 @@ namespace hp
   }
 
 
+
   template <int dim, int spacedim>
   types::global_dof_index
   DoFHandler<dim, spacedim>::n_locally_owned_dofs() const
@@ -1002,6 +1004,7 @@ namespace hp
   }
 
 
+
   template <int dim, int spacedim>
   const IndexSet &
   DoFHandler<dim, spacedim>::locally_owned_dofs() const
@@ -1010,6 +1013,7 @@ namespace hp
   }
 
 
+
   template <int dim, int spacedim>
   const std::vector<types::global_dof_index> &
   DoFHandler<dim, spacedim>::n_locally_owned_dofs_per_processor() const
@@ -1018,6 +1022,7 @@ namespace hp
   }
 
 
+
   template <int dim, int spacedim>
   const std::vector<IndexSet> &
   DoFHandler<dim, spacedim>::locally_owned_dofs_per_processor () const

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.