]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix indentation.
authorLuca Heltai <luca.heltai@sissa.it>
Thu, 10 Aug 2017 22:21:01 +0000 (16:21 -0600)
committerLuca Heltai <luca.heltai@sissa.it>
Thu, 10 Aug 2017 22:21:01 +0000 (16:21 -0600)
include/deal.II/meshworker/mesh_loop.h
tests/meshworker/mesh_loop_02.cc
tests/meshworker/mesh_loop_03.cc

index db52f446c02a06e04b563e09927900f6466cfda0..7631af58d541d507cd7b4a4ed7877e9c16d04782 100644 (file)
@@ -46,7 +46,7 @@ namespace MeshWorker
             class CellWorker, class Copyer,
             class ScratchData, class CopyData,
             class BoundaryWorker, class FaceWorker>
-  void mesh_loop(const Iterator & begin,
+  void mesh_loop(const Iterator &begin,
                  const typename identity<Iterator>::type &end,
 
 //                 const std::function<void (const Iterator &, ScratchData &, CopyData &)> &cell_worker,
@@ -72,8 +72,8 @@ namespace MeshWorker
                  BoundaryWorker boundary_worker = BoundaryWorker(),
                  FaceWorker face_worker = FaceWorker(),
 
-                 const unsigned int    queue_length = 2*MultithreadInfo::n_threads(),
-                 const unsigned int    chunk_size = 8)
+                 const unsigned int   queue_length = 2*MultithreadInfo::n_threads(),
+                 const unsigned int   chunk_size = 8)
   {
     auto cell_action = [&] (const Iterator &cell, ScratchData &scratch, CopyData &copy)
     {
@@ -88,9 +88,10 @@ namespace MeshWorker
 
       if ((!ignore_subdomain) && (csid == numbers::artificial_subdomain_id))
         return;
-      if( (flags & (assemble_cells_first)) &&
-         ( ((flags & (assemble_own_cells)) && own_cell)
-           || ( (flags & assemble_ghost_cells) && !own_cell) ) )
+
+      if ( (flags & (assemble_cells_first)) &&
+           ( ((flags & (assemble_own_cells)) && own_cell)
+             || ( (flags & assemble_ghost_cells) && !own_cell) ) )
         cell_worker(cell, scratch, copy);
 
       if (flags & assemble_own_faces)
@@ -158,7 +159,8 @@ namespace MeshWorker
                                 neighbor, neighbor_face_no.first, neighbor_face_no.second,
                                 scratch, copy);
 
-                    if(flags & assemble_own_interior_faces_both) {
+                    if (flags & assemble_own_interior_faces_both)
+                      {
                         face_worker(neighbor, neighbor_face_no.first, neighbor_face_no.second,
                                     cell, face_no, numbers::invalid_unsigned_int,
                                     scratch, copy);
index 985be0a1a7631b20fca460aac06e91c6419b193a..f231b62af3d1bb90532a0f7f4c8c913e8f0199bc 100644 (file)
@@ -32,7 +32,8 @@ struct CopyData {};
 using namespace MeshWorker;
 
 template<int dim, int spacedim>
-void test() {
+void test()
+{
   Triangulation<dim,spacedim> tria;
   GridGenerator::hyper_cube(tria);
   tria.refine_global(1);
@@ -49,25 +50,29 @@ void test() {
 
 
 
-  auto cell_worker = [] (const Iterator &cell, ScratchData &s, CopyData &c) {
+  auto cell_worker = [] (const Iterator &cell, ScratchData &s, CopyData &c)
+  {
     deallog << "Cell worker on : " << cell << std::endl;
   };
 
-  auto boundary_worker = [] (const Iterator &cell, const unsigned int &f, ScratchData &, CopyData &) {
+  auto boundary_worker = [] (const Iterator &cell, const unsigned int &f, ScratchData &, CopyData &)
+  {
     deallog << "Boundary worker on : " << cell << ", Face : "<< f << std::endl;
   };
 
   auto face_worker = []
-      (const Iterator &cell, const unsigned int & f, const unsigned int &sf,
-       const Iterator &ncell, const unsigned int &nf, const unsigned int & nsf,
-        ScratchData &s, CopyData &c) {
-        deallog << "Face worker on : " << cell << ", Neighbor cell : "  << ncell
-                << ", Face : "<< f << ", Neighbor Face : " << nf
-                << ", Subface: " << sf
-                << ", Neighbor Subface: " << nsf << std::endl;
+                     (const Iterator &cell, const unsigned int &f, const unsigned int &sf,
+                      const Iterator &ncell, const unsigned int &nf, const unsigned int &nsf,
+                      ScratchData &s, CopyData &c)
+  {
+    deallog << "Face worker on : " << cell << ", Neighbor cell : "  << ncell
+            << ", Face : "<< f << ", Neighbor Face : " << nf
+            << ", Subface: " << sf
+            << ", Neighbor Subface: " << nsf << std::endl;
   };
 
-  auto copyer = [](const CopyData &) {
+  auto copyer = [](const CopyData &)
+  {
     deallog << "Copyer" << std::endl;
   };
 
index 5b388de4ef5426d629f809965ccaf42fe4bd577d..a7e51a20aa5835720e0a69bd8aab2fb294d8425b 100644 (file)
@@ -33,7 +33,8 @@ struct CopyData {};
 using namespace MeshWorker;
 
 template<int dim, int spacedim>
-void test() {
+void test()
+{
   Triangulation<dim,spacedim> tria;
   GridGenerator::hyper_cube(tria);
   tria.refine_global(1);
@@ -50,25 +51,29 @@ void test() {
 
 
 
-  auto cell_worker = [] (const Iterator &cell, ScratchData &s, CopyData &c) {
+  auto cell_worker = [] (const Iterator &cell, ScratchData &s, CopyData &c)
+  {
     deallog << "Cell worker on : " << cell << std::endl;
   };
 
-  auto boundary_worker = [] (const Iterator &cell, const unsigned int &f, ScratchData &, CopyData &) {
+  auto boundary_worker = [] (const Iterator &cell, const unsigned int &f, ScratchData &, CopyData &)
+  {
     deallog << "Boundary worker on : " << cell << ", Face : "<< f << std::endl;
   };
 
   auto face_worker = []
-      (const Iterator &cell, const unsigned int & f, const unsigned int &sf,
-       const Iterator &ncell, const unsigned int &nf, const unsigned int & nsf,
-        ScratchData &s, CopyData &c) {
-        deallog << "Face worker on : " << cell << ", Neighbor cell : "  << ncell
-                << ", Face : "<< f << ", Neighbor Face : " << nf
-                << ", Subface: " << sf
-                << ", Neighbor Subface: " << nsf << std::endl;
+                     (const Iterator &cell, const unsigned int &f, const unsigned int &sf,
+                      const Iterator &ncell, const unsigned int &nf, const unsigned int &nsf,
+                      ScratchData &s, CopyData &c)
+  {
+    deallog << "Face worker on : " << cell << ", Neighbor cell : "  << ncell
+            << ", Face : "<< f << ", Neighbor Face : " << nf
+            << ", Subface: " << sf
+            << ", Neighbor Subface: " << nsf << std::endl;
   };
 
-  auto copyer = [](const CopyData &) {
+  auto copyer = [](const CopyData &)
+  {
     deallog << "Copyer" << std::endl;
   };
 

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.