]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Increase verbosity of the tests and minor style issues 5779/head
authorDaniel Arndt <daniel.arndt@iwr.uni-heidelberg.de>
Tue, 23 Jan 2018 15:46:28 +0000 (16:46 +0100)
committerDaniel Arndt <daniel.arndt@iwr.uni-heidelberg.de>
Tue, 23 Jan 2018 16:20:51 +0000 (17:20 +0100)
source/dofs/dof_tools_constraints.cc
tests/bits/periodicity_06.cc
tests/bits/periodicity_06.output
tests/bits/periodicity_07.cc
tests/bits/periodicity_07.output

index 4b2fe3cce1ebb4ba482417030e55989f0c651fcf..ac87608b4092138290d02e27ea28e99bfa557ae7 100644 (file)
@@ -1891,8 +1891,8 @@ namespace DoFTools
                 bool is_identity_constrained = true;
                 const double eps = 1.e-13;
                 for (unsigned int jj=0; jj<dofs_per_face; ++jj)
-                  if (((std::abs(transformation(i,jj)) < eps) ||
-                       (std::abs(transformation(i,jj)-1) < eps)) == false)
+                  if (std::abs(transformation(i,jj)) > eps &&
+                      std::abs(transformation(i,jj)-1.) > eps)
                     {
                       is_identity_constrained = false;
                       break;
@@ -1922,8 +1922,8 @@ namespace DoFTools
                 unsigned int inverse_constraint_target = numbers::invalid_unsigned_int;
                 if (is_inverse_constrained)
                   for (unsigned int jj=0; jj<dofs_per_face; ++jj)
-                    if (((std::abs(transformation(i,jj)) < eps) ||
-                         (std::abs(transformation(i,jj)+1) < eps)) == false)
+                    if (std::abs(transformation(i,jj)) > eps &&
+                        std::abs(transformation(i,jj)+1.) > eps)
                       {
                         is_inverse_constrained = false;
                         break;
@@ -1970,7 +1970,7 @@ namespace DoFTools
                   {
                     // now treat constraints, either as an equality constraint or
                     // as a sequence of constraints
-                    if (is_identity_constrained == true || is_inverse_constrained == true)
+                    if (is_identity_constrained || is_inverse_constrained)
                       {
                         // Query the correct face_index on face_1 respecting the given
                         // orientation:
index 71ec4602e5c638a9ca75b840fa1e3f934f9926d0..9b69f66cf13169fae0b39841660be6eb421c0b8a 100644 (file)
@@ -79,14 +79,14 @@ ConstraintMatrix make_constraint_matrix(const DoFHandler<2> &dof_handler, int ve
   DoFTools::make_periodicity_constraints<DoFHandler<dim> >(periodicity_vectorDof, constraints);
 
   constraints.close();
-  /*  std::map<types::global_dof_index, Point<dim> > support_points;
-    DoFTools::map_dofs_to_support_points (MappingQ<dim,dim>(1), dof_handler, support_points);
-    for (const auto &line: constraints.get_lines())
-      for (const auto &entry: line.entries)
-        std::cout << "DoF " << line.index << " at " << support_points[line.index]
-                  << " is constrained to " << " DoF " << entry.first << " at "
-                  << support_points[entry.first]
-                  << " with value " << entry.second << std::endl;*/
+  std::map<types::global_dof_index, Point<dim> > support_points;
+  DoFTools::map_dofs_to_support_points (MappingQ<dim,dim>(1), dof_handler, support_points);
+  for (const auto &line: constraints.get_lines())
+    for (const auto &entry: line.entries)
+      deallog << "DoF " << line.index << " at " << support_points[line.index]
+              << " is constrained to " << " DoF " << entry.first << " at "
+              << support_points[entry.first]
+              << " with value " << entry.second << std::endl;
   return constraints;
 }
 
index d6ba4240025e0f701933cfdb86b74d171ebe2ff7..568e2d8dceb8330ab5ed0b2028d4db717232b4a5 100644 (file)
@@ -1,9 +1,113 @@
 
 DEAL::Testing version 0
+DEAL::DoF 0 at 0.00000 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 1.00000
+DEAL::DoF 1 at 3.14159 -3.14159 is constrained to  DoF 7 at 3.14159 3.14159 with value 1.00000
+DEAL::DoF 4 at -3.14159 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 1.00000
+DEAL::DoF 5 at -3.14159 3.14159 is constrained to  DoF 7 at 3.14159 3.14159 with value 1.00000
+DEAL::DoF 8 at -3.14159 -3.14159 is constrained to  DoF 7 at 3.14159 3.14159 with value 1.00000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 7 at 3.14159 3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 7 at 3.14159 3.14159 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
 DEAL::Testing version 1
+DEAL::DoF 0 at 0.00000 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 1.00000
+DEAL::DoF 4 at -3.14159 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 1.00000
+DEAL::DoF 5 at -3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 7 at 3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 8 at -3.14159 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 1 at 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
 DEAL::Testing version 2
+DEAL::DoF 0 at 0.00000 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 1.00000
+DEAL::DoF 4 at -3.14159 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 1.00000
+DEAL::DoF 5 at -3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 7 at 3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 8 at -3.14159 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 1 at 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
 DEAL::Testing version 3
+DEAL::DoF 0 at 0.00000 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 1.00000
+DEAL::DoF 4 at -3.14159 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 1.00000
+DEAL::DoF 5 at -3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 7 at 3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 8 at -3.14159 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 1 at 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
 DEAL::Testing version 4
+DEAL::DoF 0 at 0.00000 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 1.00000
+DEAL::DoF 1 at 3.14159 -3.14159 is constrained to  DoF 7 at 3.14159 3.14159 with value 1.00000
+DEAL::DoF 4 at -3.14159 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 1.00000
+DEAL::DoF 5 at -3.14159 3.14159 is constrained to  DoF 7 at 3.14159 3.14159 with value 1.00000
+DEAL::DoF 8 at -3.14159 -3.14159 is constrained to  DoF 7 at 3.14159 3.14159 with value 1.00000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 7 at 3.14159 3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 7 at 3.14159 3.14159 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
 DEAL::Testing version 5
+DEAL::DoF 0 at 0.00000 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 1.00000
+DEAL::DoF 1 at 3.14159 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 4 at -3.14159 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 1.00000
+DEAL::DoF 7 at 3.14159 3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 8 at -3.14159 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 0.500000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 5 at -3.14159 3.14159 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
 DEAL::Testing version 6
+DEAL::DoF 0 at 0.00000 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 1.00000
+DEAL::DoF 1 at 3.14159 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 4 at -3.14159 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 1.00000
+DEAL::DoF 7 at 3.14159 3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 8 at -3.14159 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 0.500000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 5 at -3.14159 3.14159 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
 DEAL::Testing version 7
+DEAL::DoF 0 at 0.00000 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 1.00000
+DEAL::DoF 1 at 3.14159 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 4 at -3.14159 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 1.00000
+DEAL::DoF 7 at 3.14159 3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 8 at -3.14159 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 1.00000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 5 at -3.14159 3.14159 with value 0.500000
+DEAL::DoF 9 at -1.57080 -3.14159 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
+DEAL::DoF 10 at -3.14159 -1.57080 is constrained to  DoF 5 at -3.14159 3.14159 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 12 at 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 3.14159 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 2 at 0.00000 0.00000 with value 0.500000
+DEAL::DoF 13 at -1.57080 0.00000 is constrained to  DoF 3 at 3.14159 0.00000 with value 0.500000
index 0f93f9eff159c49dc8b0e5292d60b998042766ce..7c09a7c6d1721171c8d4bf3811a582e0bf157c19 100644 (file)
@@ -72,14 +72,14 @@ ConstraintMatrix make_constraint_matrix(const DoFHandler<3> &dof_handler, int ve
   DoFTools::make_periodicity_constraints<DoFHandler<dim> >(periodicity_vectorDof, constraints);
 
   constraints.close();
-  /*std::map<types::global_dof_index, Point<dim> > support_points;
+  std::map<types::global_dof_index, Point<dim> > support_points;
   DoFTools::map_dofs_to_support_points (MappingQ<dim,dim>(1), dof_handler, support_points);
   for (const auto &line: constraints.get_lines())
     for (const auto &entry: line.entries)
-      std::cout << "DoF " << line.index << " at " << support_points[line.index]
-                << " is constrained to " << " DoF " << entry.first << " at "
-                << support_points[entry.first]
-                << " with value " << entry.second << std::endl;*/
+      deallog << "DoF " << line.index << " at " << support_points[line.index]
+              << " is constrained to " << " DoF " << entry.first << " at "
+              << support_points[entry.first]
+              << " with value " << entry.second << std::endl;
   return constraints;
 }
 
index 0132ef2ce9ae0201e75efa2ff1c0ed4c674f0808..73d89234c50c9a1b21bf870c50b2791b0648ca56 100644 (file)
@@ -1,5 +1,273 @@
 
 DEAL::Testing version 0
+DEAL::DoF 0 at 0.00000 -3.14159 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 1.00000
+DEAL::DoF 1 at 3.14159 -3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 2 at 0.00000 0.00000 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 1.00000
+DEAL::DoF 3 at 3.14159 0.00000 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 4 at 0.00000 -3.14159 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 1.00000
+DEAL::DoF 5 at 3.14159 -3.14159 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 8 at -3.14159 0.00000 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 9 at -3.14159 3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 10 at 0.00000 3.14159 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 1.00000
+DEAL::DoF 11 at -3.14159 0.00000 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 1.00000
+DEAL::DoF 12 at -3.14159 3.14159 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 14 at 3.14159 3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 16 at -3.14159 -3.14159 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 17 at -3.14159 -3.14159 3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 18 at 0.00000 -3.14159 3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 1.00000
+DEAL::DoF 19 at -3.14159 0.00000 3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 21 at 3.14159 -3.14159 3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 23 at -3.14159 3.14159 3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 26 at -3.14159 -3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 27 at -1.57080 -3.14159 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.500000
+DEAL::DoF 27 at -1.57080 -3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.500000
+DEAL::DoF 28 at -3.14159 -1.57080 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 28 at -3.14159 -1.57080 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.500000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.250000
+DEAL::DoF 30 at -3.14159 -3.14159 -1.57080 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 30 at -3.14159 -3.14159 -1.57080 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.500000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.250000
+DEAL::DoF 34 at 0.00000 -1.57080 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 34 at 0.00000 -1.57080 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.500000
+DEAL::DoF 35 at 0.00000 -3.14159 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 35 at 0.00000 -3.14159 -1.57080 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.500000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.250000
+DEAL::DoF 37 at -1.57080 0.00000 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 37 at -1.57080 0.00000 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 38 at -3.14159 0.00000 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
+DEAL::DoF 38 at -3.14159 0.00000 -1.57080 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 40 at 0.00000 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 40 at 0.00000 0.00000 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 41 at -1.57080 -3.14159 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 41 at -1.57080 -3.14159 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 42 at -3.14159 -1.57080 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
+DEAL::DoF 42 at -3.14159 -1.57080 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 44 at 0.00000 -1.57080 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 44 at 0.00000 -1.57080 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 45 at -1.57080 0.00000 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 45 at -1.57080 0.00000 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
 DEAL::Testing version 1
+DEAL::DoF 0 at 0.00000 -3.14159 -3.14159 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 2 at 0.00000 0.00000 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 1.00000
+DEAL::DoF 4 at 0.00000 -3.14159 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 1.00000
+DEAL::DoF 8 at -3.14159 0.00000 -3.14159 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 1.00000
+DEAL::DoF 9 at -3.14159 3.14159 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 1.00000
+DEAL::DoF 11 at -3.14159 0.00000 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 1.00000
+DEAL::DoF 12 at -3.14159 3.14159 0.00000 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 1.00000
+DEAL::DoF 14 at 3.14159 3.14159 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 1.00000
+DEAL::DoF 15 at 3.14159 3.14159 0.00000 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 1.00000
+DEAL::DoF 16 at -3.14159 -3.14159 0.00000 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 1.00000
+DEAL::DoF 17 at -3.14159 -3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 1.00000
+DEAL::DoF 18 at 0.00000 -3.14159 3.14159 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 19 at -3.14159 0.00000 3.14159 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 1.00000
+DEAL::DoF 21 at 3.14159 -3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 1.00000
+DEAL::DoF 22 at 3.14159 0.00000 3.14159 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 1.00000
+DEAL::DoF 23 at -3.14159 3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 1.00000
+DEAL::DoF 24 at 0.00000 3.14159 3.14159 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 1.00000
+DEAL::DoF 25 at 3.14159 3.14159 3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 1.00000
+DEAL::DoF 26 at -3.14159 -3.14159 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 1.00000
+DEAL::DoF 27 at -1.57080 -3.14159 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 0.500000
+DEAL::DoF 27 at -1.57080 -3.14159 -3.14159 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 28 at -3.14159 -1.57080 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 0.500000
+DEAL::DoF 28 at -3.14159 -1.57080 -3.14159 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 0.500000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 30 at -3.14159 -3.14159 -1.57080 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 0.500000
+DEAL::DoF 30 at -3.14159 -3.14159 -1.57080 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 0.500000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 1 at 3.14159 -3.14159 -3.14159 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 34 at 0.00000 -1.57080 -3.14159 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 34 at 0.00000 -1.57080 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 35 at 0.00000 -3.14159 -1.57080 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 0.500000
+DEAL::DoF 35 at 0.00000 -3.14159 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 10 at 0.00000 3.14159 -3.14159 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 37 at -1.57080 0.00000 -3.14159 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 0.500000
+DEAL::DoF 37 at -1.57080 0.00000 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 38 at -3.14159 0.00000 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 0.500000
+DEAL::DoF 38 at -3.14159 0.00000 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 3 at 3.14159 0.00000 -3.14159 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 40 at 0.00000 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 40 at 0.00000 0.00000 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 41 at -1.57080 -3.14159 0.00000 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 0.500000
+DEAL::DoF 41 at -1.57080 -3.14159 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 42 at -3.14159 -1.57080 0.00000 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 0.500000
+DEAL::DoF 42 at -3.14159 -1.57080 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 5 at 3.14159 -3.14159 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 44 at 0.00000 -1.57080 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 44 at 0.00000 -1.57080 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 45 at -1.57080 0.00000 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 45 at -1.57080 0.00000 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
 DEAL::Testing version 2
+DEAL::DoF 0 at 0.00000 -3.14159 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 1.00000
+DEAL::DoF 1 at 3.14159 -3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 2 at 0.00000 0.00000 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 1.00000
+DEAL::DoF 3 at 3.14159 0.00000 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 4 at 0.00000 -3.14159 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 1.00000
+DEAL::DoF 5 at 3.14159 -3.14159 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 8 at -3.14159 0.00000 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 9 at -3.14159 3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 10 at 0.00000 3.14159 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 1.00000
+DEAL::DoF 11 at -3.14159 0.00000 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 1.00000
+DEAL::DoF 12 at -3.14159 3.14159 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 14 at 3.14159 3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 16 at -3.14159 -3.14159 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 17 at -3.14159 -3.14159 3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 18 at 0.00000 -3.14159 3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 1.00000
+DEAL::DoF 19 at -3.14159 0.00000 3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 21 at 3.14159 -3.14159 3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 23 at -3.14159 3.14159 3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 26 at -3.14159 -3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 1.00000
+DEAL::DoF 27 at -1.57080 -3.14159 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.500000
+DEAL::DoF 27 at -1.57080 -3.14159 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.500000
+DEAL::DoF 28 at -3.14159 -1.57080 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 28 at -3.14159 -1.57080 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.500000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.250000
+DEAL::DoF 30 at -3.14159 -3.14159 -1.57080 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 30 at -3.14159 -3.14159 -1.57080 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.500000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 25 at 3.14159 3.14159 3.14159 with value 0.250000
+DEAL::DoF 34 at 0.00000 -1.57080 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 34 at 0.00000 -1.57080 -3.14159 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.500000
+DEAL::DoF 35 at 0.00000 -3.14159 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 35 at 0.00000 -3.14159 -1.57080 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.500000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 24 at 0.00000 3.14159 3.14159 with value 0.250000
+DEAL::DoF 37 at -1.57080 0.00000 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 37 at -1.57080 0.00000 -3.14159 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 38 at -3.14159 0.00000 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
+DEAL::DoF 38 at -3.14159 0.00000 -1.57080 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 22 at 3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 40 at 0.00000 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 40 at 0.00000 0.00000 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 41 at -1.57080 -3.14159 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 41 at -1.57080 -3.14159 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 42 at -3.14159 -1.57080 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
+DEAL::DoF 42 at -3.14159 -1.57080 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 15 at 3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 44 at 0.00000 -1.57080 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 44 at 0.00000 -1.57080 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 45 at -1.57080 0.00000 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 45 at -1.57080 0.00000 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
 DEAL::Testing version 3
+DEAL::DoF 0 at 0.00000 -3.14159 -3.14159 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 1 at 3.14159 -3.14159 -3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 2 at 0.00000 0.00000 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 1.00000
+DEAL::DoF 3 at 3.14159 0.00000 -3.14159 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 4 at 0.00000 -3.14159 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 1.00000
+DEAL::DoF 5 at 3.14159 -3.14159 0.00000 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 8 at -3.14159 0.00000 -3.14159 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 9 at -3.14159 3.14159 -3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 10 at 0.00000 3.14159 -3.14159 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 11 at -3.14159 0.00000 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 1.00000
+DEAL::DoF 14 at 3.14159 3.14159 -3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 15 at 3.14159 3.14159 0.00000 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 16 at -3.14159 -3.14159 0.00000 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 1.00000
+DEAL::DoF 21 at 3.14159 -3.14159 3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 22 at 3.14159 0.00000 3.14159 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 1.00000
+DEAL::DoF 23 at -3.14159 3.14159 3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 24 at 0.00000 3.14159 3.14159 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 25 at 3.14159 3.14159 3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 26 at -3.14159 -3.14159 -3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 1.00000
+DEAL::DoF 27 at -1.57080 -3.14159 -3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 0.500000
+DEAL::DoF 27 at -1.57080 -3.14159 -3.14159 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 0.500000
+DEAL::DoF 28 at -3.14159 -1.57080 -3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 0.500000
+DEAL::DoF 28 at -3.14159 -1.57080 -3.14159 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 29 at -1.57080 -1.57080 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 30 at -3.14159 -3.14159 -1.57080 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 30 at -3.14159 -3.14159 -1.57080 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 0.500000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 0.250000
+DEAL::DoF 31 at -1.57080 -3.14159 -1.57080 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 17 at -3.14159 -3.14159 3.14159 with value 0.250000
+DEAL::DoF 32 at -3.14159 -1.57080 -1.57080 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 34 at 0.00000 -1.57080 -3.14159 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 0.500000
+DEAL::DoF 34 at 0.00000 -1.57080 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 35 at 0.00000 -3.14159 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 35 at 0.00000 -3.14159 -1.57080 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 0.500000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 18 at 0.00000 -3.14159 3.14159 with value 0.250000
+DEAL::DoF 36 at 0.00000 -1.57080 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 37 at -1.57080 0.00000 -3.14159 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 37 at -1.57080 0.00000 -3.14159 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 38 at -3.14159 0.00000 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
+DEAL::DoF 38 at -3.14159 0.00000 -1.57080 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 0.500000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 19 at -3.14159 0.00000 3.14159 with value 0.250000
+DEAL::DoF 39 at -1.57080 0.00000 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.250000
+DEAL::DoF 40 at 0.00000 0.00000 -1.57080 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 40 at 0.00000 0.00000 -1.57080 is constrained to  DoF 20 at 0.00000 0.00000 3.14159 with value 0.500000
+DEAL::DoF 41 at -1.57080 -3.14159 0.00000 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 41 at -1.57080 -3.14159 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 42 at -3.14159 -1.57080 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000
+DEAL::DoF 42 at -3.14159 -1.57080 0.00000 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 0.500000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 12 at -3.14159 3.14159 0.00000 with value 0.250000
+DEAL::DoF 43 at -1.57080 -1.57080 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.250000
+DEAL::DoF 44 at 0.00000 -1.57080 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 44 at 0.00000 -1.57080 0.00000 is constrained to  DoF 13 at 0.00000 3.14159 0.00000 with value 0.500000
+DEAL::DoF 45 at -1.57080 0.00000 0.00000 is constrained to  DoF 6 at 0.00000 0.00000 0.00000 with value 0.500000
+DEAL::DoF 45 at -1.57080 0.00000 0.00000 is constrained to  DoF 7 at 3.14159 0.00000 0.00000 with value 0.500000

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.