From: Daniel Arndt Date: Tue, 23 Jan 2018 15:46:28 +0000 (+0100) Subject: Increase verbosity of the tests and minor style issues X-Git-Tag: v9.0.0-rc1~501^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11b7dc1e1f76b35f5adb1c25cd84afc8f109fe42;p=dealii.git Increase verbosity of the tests and minor style issues --- diff --git a/source/dofs/dof_tools_constraints.cc b/source/dofs/dof_tools_constraints.cc index 4b2fe3cce1..ac87608b40 100644 --- a/source/dofs/dof_tools_constraints.cc +++ b/source/dofs/dof_tools_constraints.cc @@ -1891,8 +1891,8 @@ namespace DoFTools bool is_identity_constrained = true; const double eps = 1.e-13; for (unsigned int jj=0; 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 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: diff --git a/tests/bits/periodicity_06.cc b/tests/bits/periodicity_06.cc index 71ec4602e5..9b69f66cf1 100644 --- a/tests/bits/periodicity_06.cc +++ b/tests/bits/periodicity_06.cc @@ -79,14 +79,14 @@ ConstraintMatrix make_constraint_matrix(const DoFHandler<2> &dof_handler, int ve DoFTools::make_periodicity_constraints >(periodicity_vectorDof, constraints); constraints.close(); - /* std::map > support_points; - DoFTools::map_dofs_to_support_points (MappingQ(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 > support_points; + DoFTools::map_dofs_to_support_points (MappingQ(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; } diff --git a/tests/bits/periodicity_06.output b/tests/bits/periodicity_06.output index d6ba424002..568e2d8dce 100644 --- a/tests/bits/periodicity_06.output +++ b/tests/bits/periodicity_06.output @@ -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 diff --git a/tests/bits/periodicity_07.cc b/tests/bits/periodicity_07.cc index 0f93f9eff1..7c09a7c6d1 100644 --- a/tests/bits/periodicity_07.cc +++ b/tests/bits/periodicity_07.cc @@ -72,14 +72,14 @@ ConstraintMatrix make_constraint_matrix(const DoFHandler<3> &dof_handler, int ve DoFTools::make_periodicity_constraints >(periodicity_vectorDof, constraints); constraints.close(); - /*std::map > support_points; + std::map > support_points; DoFTools::map_dofs_to_support_points (MappingQ(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; } diff --git a/tests/bits/periodicity_07.output b/tests/bits/periodicity_07.output index 0132ef2ce9..73d89234c5 100644 --- a/tests/bits/periodicity_07.output +++ b/tests/bits/periodicity_07.output @@ -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