]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Use Jacobi preconditioning. Check for float matrices as well.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 24 May 2000 11:13:02 +0000 (11:13 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 24 May 2000 11:13:02 +0000 (11:13 +0000)
git-svn-id: https://svn.dealii.org/trunk@2936 0785d39b-7218-0410-832d-ea1e28bc413d

tests/deal.II/block_matrices.cc
tests/deal.II/block_matrices.checked

index 57b0cea68093437a54d1400263e0ae84e038383e..7eb3c1c726bfee027f4b3d5ab0155776b6eac8d1 100644 (file)
@@ -118,6 +118,25 @@ void LaplaceProblem<Vector<double>,SparseMatrix<double>,SparsityPattern>::reinit
 
 
 
+template <>
+void LaplaceProblem<Vector<float>,SparseMatrix<float>,SparsityPattern>::reinit_sparsity () 
+{
+  sparsity_pattern.reinit (dof_handler.n_dofs(),
+                          dof_handler.n_dofs(),
+                          dof_handler.max_couplings_between_dofs());
+};
+
+
+
+template <>
+void LaplaceProblem<Vector<float>,SparseMatrix<float>,SparsityPattern>::reinit_vectors () 
+{
+  solution.reinit (dof_handler.n_dofs());
+  system_rhs.reinit (dof_handler.n_dofs());
+};
+
+
+
 template <>
 void LaplaceProblem<BlockVector<2,double>,BlockSparseMatrix<double,2,2>,BlockSparsityPattern<2,2> >::reinit_sparsity () 
 {
@@ -247,8 +266,11 @@ void LaplaceProblem<Vector,Matrix,Sparsity>::solve ()
   PrimitiveVectorMemory<Vector> vector_memory;
   SolverCG<Vector>        cg (solver_control, vector_memory);
 
+  PreconditionRelaxation<Matrix,Vector> preconditioner
+    (system_matrix, &Matrix::precondition_Jacobi, 0.8);
+  
   cg.solve (system_matrix, solution, system_rhs,
-           PreconditionIdentity());
+           preconditioner);
 };
 
 
@@ -293,6 +315,18 @@ int main ()
        solutions.back()[i] = laplace_problem.solution(i);
     };
   
+  if (true)
+    {
+      LaplaceProblem<Vector<float>,SparseMatrix<float>,SparsityPattern>
+       laplace_problem;  
+      laplace_problem.run ();
+      
+      solutions.push_back (vector<double>());
+      solutions.back().resize (laplace_problem.solution.size());
+      for (unsigned int i=0; i<laplace_problem.solution.size(); ++i)
+       solutions.back()[i] = laplace_problem.solution(i);
+    };
+  
   if (true)
     {
       LaplaceProblem<BlockVector<2,double>,BlockSparseMatrix<double,2,2>,BlockSparsityPattern<2,2> >
@@ -318,22 +352,33 @@ int main ()
     };
 
   const unsigned int n_datasets = solutions.size();
+  deallog << "Checking " << n_datasets << " data sets." << endl;
+  
   for (unsigned int i=1; i<n_datasets; ++i)
     Assert (solutions[i].size() == solutions[i].size(),
            ExcInternalError());
+  
   logfile.precision(16);
   for (unsigned int i=1; i<n_datasets; ++i)
-    for (unsigned int j=0; j<solutions[0].size(); ++j)
-      if ( fabs(solutions[i][j] - solutions[0][j]) >
-          1e-12*fabs(solutions[i][j] + solutions[0][j]))
-       {
-         deallog << "Discrepancy: i=" << i << ", j=" << j
-                 << ", sol[i][j]=" << solutions[i][j]
-                 << ", sol[0][j]=" << solutions[0][j]
-                 << endl;
-         deallog << flush;
-         Assert (false, ExcInternalError());
-       };
+    {
+                                      // relative accuracy. data set
+                                      // 1 is computed using floats
+                                      // instead of doubles, so lower
+                                      // our requirements
+      const double accuracy = (i==1 ? 1e-6 : 1e-12);
+      
+      for (unsigned int j=0; j<solutions[0].size(); ++j)
+       if ( fabs(solutions[i][j] - solutions[0][j]) >
+            accuracy*fabs(solutions[i][j] + solutions[0][j]))
+         {
+           deallog << "Discrepancy: i=" << i << ", j=" << j
+                   << ", sol[i][j]=" << solutions[i][j]
+                   << ", sol[0][j]=" << solutions[0][j]
+                   << endl;
+           deallog << flush;
+           Assert (false, ExcInternalError());
+         };
+    };
   
     
   return 0;
index 10bc523af06e82ae93e692c10fb087d8e285fa2e..8fad8624d422a30a6629fea24c2b1aaeaf2c6b40 100644 (file)
@@ -1094,6 +1094,1098 @@ DEAL::t6Vector1Zd t12SparseMatrix1Zd-1088 0.000
 DEAL::Number of active cells: 1024
 DEAL::Total number of cells: 1365
 DEAL::Number of degrees of freedom: 1089
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-0 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-2 0.008123
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-3 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-4 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-5 0.01403
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-6 0.02521
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-7 0.01403
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-8 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-9 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-10 0.01876
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-11 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-12 0.02269
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-13 0.04207
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-14 0.03438
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-15 0.04751
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-16 0.03438
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-17 0.05867
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-18 0.07294
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-19 0.05867
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-20 0.04207
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-21 0.01876
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-22 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-23 0.02269
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-24 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-25 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-26 0.02601
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-27 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-28 0.02884
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-29 0.05417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-30 0.04860
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-31 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-32 0.03125
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-33 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-34 0.03331
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-35 0.06302
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-36 0.05895
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-37 0.08343
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-38 0.07640
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-39 0.08944
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-40 0.1128
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-41 0.1050
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-42 0.09586
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-43 0.06821
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-44 0.08525
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-45 0.1000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-46 0.08525
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-47 0.1129
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-48 0.1277
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-49 0.1129
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-50 0.09586
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-51 0.1240
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-52 0.1335
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-53 0.1517
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-54 0.1406
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-55 0.1550
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-56 0.1406
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-57 0.1676
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-58 0.1813
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-59 0.1676
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-60 0.1517
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-61 0.1240
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-62 0.1050
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-63 0.1335
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-64 0.1128
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-65 0.02601
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-66 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-67 0.04860
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-68 0.05417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-69 0.02884
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-70 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-71 0.06821
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-72 0.07640
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-73 0.08343
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-74 0.05895
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-75 0.08944
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-76 0.06302
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-77 0.03125
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-78 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-79 0.03331
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-80 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-81 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-82 0.03505
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-83 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-84 0.03650
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-85 0.06936
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-86 0.06647
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-87 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-88 0.03770
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-89 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-90 0.03866
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-91 0.07364
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-92 0.07174
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-93 0.1023
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-94 0.09882
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-95 0.1052
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-96 0.1334
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-97 0.1297
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-98 0.1251
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-99 0.09454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-100 0.1195
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-101 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-102 0.03939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-103 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-104 0.03991
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-105 0.07612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-106 0.07509
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-107 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-108 0.04021
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-109 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-110 0.04031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-111 0.07693
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-112 0.07672
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-113 0.1097
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-114 0.1088
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-115 0.1100
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-116 0.1398
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-117 0.1394
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-118 0.1383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-119 0.1073
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-120 0.1363
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-121 0.1621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-122 0.1587
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-123 0.1646
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-124 0.1880
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-125 0.1851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-126 0.1811
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-127 0.1660
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-128 0.1665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-129 0.1902
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-130 0.1897
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-131 0.2105
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-132 0.2086
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-133 0.2112
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-134 0.2295
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-135 0.2288
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-136 0.2267
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-137 0.2054
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-138 0.2008
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-139 0.2231
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-140 0.2180
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-141 0.1417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-142 0.1485
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-143 0.1692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-144 0.1612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-145 0.1541
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-146 0.1758
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-147 0.1948
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-148 0.1873
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-149 0.2113
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-150 0.2031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-151 0.1783
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-152 0.1931
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-153 0.2059
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-154 0.1931
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-155 0.2167
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-156 0.2282
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-157 0.2167
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-158 0.2031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-159 0.2256
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-160 0.2328
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-161 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-162 0.2377
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-163 0.2478
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-164 0.2377
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-165 0.2559
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-166 0.2644
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-167 0.2559
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-168 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-169 0.2256
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-170 0.2113
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-171 0.2328
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-172 0.2180
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-173 0.2383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-174 0.2423
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-175 0.2555
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-176 0.2513
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-177 0.2446
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-178 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-179 0.2588
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-180 0.2580
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-181 0.2692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-182 0.2665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-183 0.2700
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-184 0.2791
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-185 0.2782
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-186 0.2754
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-187 0.2621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-188 0.2708
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-189 0.2775
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-190 0.2708
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-191 0.2823
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-192 0.2871
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-193 0.2823
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-194 0.2754
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-195 0.2851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-196 0.2861
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-197 0.2910
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-198 0.2900
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-199 0.2930
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-200 0.2900
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-201 0.2939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-202 0.2949
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-203 0.2939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-204 0.2910
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-205 0.2851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-206 0.2782
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-207 0.2861
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-208 0.2791
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-209 0.2383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-210 0.2231
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-211 0.2513
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-212 0.2555
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-213 0.2423
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-214 0.2267
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-215 0.2621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-216 0.2665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-217 0.2692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-218 0.2580
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-219 0.2700
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-220 0.2588
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-221 0.2446
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-222 0.2288
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-223 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-224 0.2295
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-225 0.03505
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-226 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-227 0.06647
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-228 0.06936
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-229 0.03650
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-230 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-231 0.09454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-232 0.1195
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-233 0.1251
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-234 0.09882
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-235 0.1023
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-236 0.07174
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-237 0.1297
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-238 0.1334
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-239 0.1052
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-240 0.07364
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-241 0.03770
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-242 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-243 0.03866
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-244 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-245 0.1417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-246 0.1612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-247 0.1692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-248 0.1485
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-249 0.1783
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-250 0.1873
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-251 0.1948
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-252 0.1758
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-253 0.2008
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-254 0.1811
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-255 0.1541
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-256 0.1587
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-257 0.1621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-258 0.1363
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-259 0.1851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-260 0.1880
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-261 0.1646
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-262 0.1383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-263 0.2054
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-264 0.2086
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-265 0.2105
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-266 0.1897
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-267 0.2112
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-268 0.1902
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-269 0.1660
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-270 0.1394
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-271 0.1665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-272 0.1398
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-273 0.03939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-274 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-275 0.07509
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-276 0.07612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-277 0.03991
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-278 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-279 0.1073
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-280 0.1088
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-281 0.1097
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-282 0.07672
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-283 0.1100
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-284 0.07693
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-285 0.04021
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-286 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-287 0.04031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-288 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-289 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-290 0.04021
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-291 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-292 0.03991
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-293 0.07612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-294 0.07672
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-295 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-296 0.03939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-297 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-298 0.03866
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-299 0.07364
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-300 0.07509
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-301 0.1073
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-302 0.1088
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-303 0.1052
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-304 0.1334
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-305 0.1363
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-306 0.1383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-307 0.1097
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-308 0.1394
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-309 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-310 0.03770
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-311 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-312 0.03650
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-313 0.06936
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-314 0.07174
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-315 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-316 0.03505
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-317 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-318 0.03331
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-319 0.06302
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-320 0.06647
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-321 0.09454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-322 0.09882
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-323 0.08944
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-324 0.1128
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-325 0.1195
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-326 0.1251
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-327 0.1023
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-328 0.1297
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-329 0.1541
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-330 0.1587
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-331 0.1485
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-332 0.1692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-333 0.1758
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-334 0.1811
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-335 0.1417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-336 0.1335
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-337 0.1517
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-338 0.1612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-339 0.1783
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-340 0.1873
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-341 0.1676
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-342 0.1813
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-343 0.1931
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-344 0.2031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-345 0.1948
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-346 0.2008
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-347 0.2113
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-348 0.2180
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-349 0.1660
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-350 0.1646
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-351 0.1880
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-352 0.1897
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-353 0.1621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-354 0.1851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-355 0.2054
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-356 0.2086
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-357 0.2231
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-358 0.2267
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-359 0.2105
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-360 0.2288
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-361 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-362 0.03125
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-363 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-364 0.02884
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-365 0.05417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-366 0.05895
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-367 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-368 0.02601
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-369 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-370 0.02269
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-371 0.04207
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-372 0.04860
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-373 0.06821
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-374 0.07640
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-375 0.05867
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-376 0.07294
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-377 0.08525
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-378 0.09586
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-379 0.08343
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-380 0.1050
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-381 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-382 0.01876
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-383 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-384 0.01403
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-385 0.02521
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-386 0.03438
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-387 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-388 0.008123
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-389 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-390 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-391 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-392 0.01403
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-393 0.01876
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-394 0.03438
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-395 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-396 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-397 0.02269
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-398 0.04207
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-399 0.04751
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-400 0.05867
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-401 0.06821
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-402 0.08525
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-403 0.04860
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-404 0.05417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-405 0.07640
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-406 0.09586
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-407 0.02601
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-408 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-409 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-410 0.02884
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-411 0.03125
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-412 0.05895
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-413 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-414 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-415 0.03331
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-416 0.06302
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-417 0.08343
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-418 0.1050
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-419 0.08944
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-420 0.1128
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-421 0.1240
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-422 0.1129
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-423 0.1277
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-424 0.1406
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-425 0.1000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-426 0.1129
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-427 0.1240
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-428 0.1406
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-429 0.1335
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-430 0.1517
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-431 0.1550
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-432 0.1676
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-433 0.1783
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-434 0.1931
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-435 0.1612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-436 0.1692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-437 0.1873
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-438 0.2031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-439 0.1417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-440 0.1195
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-441 0.1251
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-442 0.1485
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-443 0.1541
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-444 0.1758
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-445 0.1297
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-446 0.1334
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-447 0.1587
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-448 0.1811
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-449 0.1948
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-450 0.2113
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-451 0.2008
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-452 0.2180
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-453 0.09454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-454 0.06647
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-455 0.06936
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-456 0.09882
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-457 0.03505
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-458 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-459 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-460 0.03650
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-461 0.03770
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-462 0.07174
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-463 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-464 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-465 0.03866
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-466 0.07364
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-467 0.1023
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-468 0.1052
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-469 0.1073
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-470 0.1363
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-471 0.07509
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-472 0.07612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-473 0.1088
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-474 0.1383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-475 0.03939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-476 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-477 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-478 0.03991
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-479 0.04021
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-480 0.07672
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-481 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-482 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-483 0.04031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-484 0.07693
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-485 0.1097
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-486 0.1394
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-487 0.1100
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-488 0.1398
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-489 0.2054
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-490 0.2231
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-491 0.1851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-492 0.1880
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-493 0.2086
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-494 0.2267
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-495 0.1621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-496 0.1646
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-497 0.1660
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-498 0.1897
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-499 0.1665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-500 0.1902
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-501 0.2105
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-502 0.2288
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-503 0.2112
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-504 0.2295
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-505 0.2446
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-506 0.2423
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-507 0.2555
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-508 0.2580
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-509 0.2383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-510 0.2328
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-511 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-512 0.2513
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-513 0.2621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-514 0.2665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-515 0.2559
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-516 0.2644
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-517 0.2708
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-518 0.2754
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-519 0.2692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-520 0.2782
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-521 0.2256
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-522 0.2167
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-523 0.2282
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-524 0.2377
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-525 0.2059
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-526 0.2167
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-527 0.2256
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-528 0.2377
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-529 0.2328
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-530 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-531 0.2478
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-532 0.2559
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-533 0.2621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-534 0.2708
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-535 0.2513
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-536 0.2555
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-537 0.2665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-538 0.2754
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-539 0.2383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-540 0.2423
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-541 0.2446
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-542 0.2580
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-543 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-544 0.2588
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-545 0.2692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-546 0.2782
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-547 0.2700
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-548 0.2791
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-549 0.2851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-550 0.2823
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-551 0.2871
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-552 0.2900
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-553 0.2775
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-554 0.2823
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-555 0.2851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-556 0.2900
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-557 0.2861
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-558 0.2910
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-559 0.2930
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-560 0.2939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-561 0.2930
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-562 0.2939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-563 0.2900
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-564 0.2871
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-565 0.2900
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-566 0.2910
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-567 0.2851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-568 0.2782
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-569 0.2754
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-570 0.2823
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-571 0.2775
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-572 0.2823
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-573 0.2708
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-574 0.2644
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-575 0.2708
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-576 0.2754
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-577 0.2851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-578 0.2861
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-579 0.2782
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-580 0.2791
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-581 0.2692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-582 0.2580
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-583 0.2555
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-584 0.2665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-585 0.2446
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-586 0.2288
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-587 0.2267
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-588 0.2423
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-589 0.2383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-590 0.2513
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-591 0.2231
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-592 0.2180
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-593 0.2328
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-594 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-595 0.2621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-596 0.2559
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-597 0.2478
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-598 0.2559
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-599 0.2377
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-600 0.2282
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-601 0.2377
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-602 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-603 0.2256
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-604 0.2113
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-605 0.2031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-606 0.2167
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-607 0.2059
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-608 0.2167
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-609 0.1931
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-610 0.1813
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-611 0.1931
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-612 0.2031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-613 0.2256
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-614 0.2328
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-615 0.2113
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-616 0.2180
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-617 0.2692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-618 0.2700
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-619 0.2665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-620 0.2555
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-621 0.2580
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-622 0.2588
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-623 0.2621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-624 0.2513
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-625 0.2383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-626 0.2423
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-627 0.2231
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-628 0.2267
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-629 0.2446
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-630 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-631 0.2288
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-632 0.2295
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-633 0.2105
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-634 0.1897
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-635 0.1880
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-636 0.2086
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-637 0.1660
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-638 0.1394
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-639 0.1383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-640 0.1646
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-641 0.1621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-642 0.1851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-643 0.1363
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-644 0.1334
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-645 0.1587
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-646 0.1811
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-647 0.2054
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-648 0.2008
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-649 0.1097
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-650 0.07672
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-651 0.07612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-652 0.1088
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-653 0.04021
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-654 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-655 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-656 0.03991
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-657 0.03939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-658 0.07509
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-659 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-660 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-661 0.03866
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-662 0.07364
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-663 0.1073
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-664 0.1052
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-665 0.1023
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-666 0.1297
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-667 0.07174
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-668 0.06936
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-669 0.09882
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-670 0.1251
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-671 0.03770
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-672 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-673 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-674 0.03650
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-675 0.03505
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-676 0.06647
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-677 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-678 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-679 0.03331
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-680 0.06302
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-681 0.09454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-682 0.1195
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-683 0.08944
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-684 0.1128
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-685 0.1948
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-686 0.1758
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-687 0.1692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-688 0.1873
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-689 0.1541
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-690 0.1485
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-691 0.1417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-692 0.1612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-693 0.1335
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-694 0.1517
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-695 0.1783
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-696 0.1676
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-697 0.1550
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-698 0.1676
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-699 0.1406
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-700 0.1277
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-701 0.1406
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-702 0.1517
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-703 0.1240
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-704 0.1050
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-705 0.09586
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-706 0.1129
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-707 0.1000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-708 0.1129
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-709 0.08525
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-710 0.07294
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-711 0.08525
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-712 0.09586
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-713 0.1240
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-714 0.1335
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-715 0.1050
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-716 0.1128
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-717 0.08343
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-718 0.05895
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-719 0.05417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-720 0.07640
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-721 0.03125
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-722 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-723 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-724 0.02884
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-725 0.02601
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-726 0.04860
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-727 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-728 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-729 0.02269
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-730 0.04207
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-731 0.06821
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-732 0.05867
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-733 0.04751
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-734 0.05867
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-735 0.03438
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-736 0.02521
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-737 0.03438
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-738 0.04207
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-739 0.01876
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-740 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-741 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-742 0.01403
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-743 0.008123
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-744 0.01403
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-745 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-746 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-747 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-748 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-749 0.01876
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-750 0.02269
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-751 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-752 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-753 0.08343
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-754 0.08944
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-755 0.07640
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-756 0.05417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-757 0.05895
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-758 0.06302
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-759 0.06821
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-760 0.04860
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-761 0.02601
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-762 0.02884
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-763 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-764 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-765 0.03125
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-766 0.03331
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-767 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-768 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-769 0.2105
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-770 0.2112
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-771 0.2086
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-772 0.1880
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-773 0.1897
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-774 0.1902
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-775 0.2054
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-776 0.2008
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-777 0.1811
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-778 0.1851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-779 0.1621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-780 0.1646
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-781 0.1587
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-782 0.1334
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-783 0.1363
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-784 0.1383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-785 0.1660
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-786 0.1665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-787 0.1394
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-788 0.1398
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-789 0.1948
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-790 0.1873
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-791 0.1692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-792 0.1758
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-793 0.1783
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-794 0.1612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-795 0.1417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-796 0.1485
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-797 0.1195
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-798 0.1251
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-799 0.1541
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-800 0.1297
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-801 0.1023
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-802 0.1052
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-803 0.09882
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-804 0.06936
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-805 0.07174
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-806 0.07364
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-807 0.09454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-808 0.06647
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-809 0.03505
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-810 0.03650
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-811 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-812 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-813 0.03770
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-814 0.03866
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-815 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-816 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-817 0.1097
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-818 0.1100
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-819 0.1088
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-820 0.07612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-821 0.07672
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-822 0.07693
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-823 0.1073
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-824 0.07509
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-825 0.03939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-826 0.03991
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-827 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-828 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-829 0.04021
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-830 0.04031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-831 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-832 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-833 0.04021
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-834 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-835 0.07672
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-836 0.07612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-837 0.03991
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-838 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-839 0.1097
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-840 0.1394
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-841 0.1383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-842 0.1088
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-843 0.1073
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-844 0.07509
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-845 0.1363
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-846 0.1334
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-847 0.1052
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-848 0.07364
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-849 0.03939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-850 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-851 0.03866
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-852 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-853 0.1660
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-854 0.1897
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-855 0.1880
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-856 0.1646
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-857 0.2105
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-858 0.2288
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-859 0.2267
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-860 0.2086
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-861 0.2054
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-862 0.1851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-863 0.2231
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-864 0.2180
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-865 0.2008
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-866 0.1811
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-867 0.1621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-868 0.1587
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-869 0.1541
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-870 0.1297
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-871 0.1758
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-872 0.1692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-873 0.1485
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-874 0.1251
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-875 0.1948
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-876 0.2113
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-877 0.2031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-878 0.1873
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-879 0.1783
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-880 0.1612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-881 0.1931
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-882 0.1813
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-883 0.1676
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-884 0.1517
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-885 0.1417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-886 0.1195
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-887 0.1335
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-888 0.1128
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-889 0.03770
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-890 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-891 0.07174
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-892 0.06936
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-893 0.03650
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-894 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-895 0.1023
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-896 0.09882
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-897 0.09454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-898 0.06647
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-899 0.08944
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-900 0.06302
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-901 0.03505
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-902 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-903 0.03331
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-904 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-905 0.2446
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-906 0.2580
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-907 0.2555
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-908 0.2423
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-909 0.2692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-910 0.2782
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-911 0.2754
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-912 0.2665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-913 0.2621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-914 0.2513
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-915 0.2708
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-916 0.2644
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-917 0.2559
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-918 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-919 0.2383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-920 0.2328
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-921 0.2851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-922 0.2900
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-923 0.2871
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-924 0.2823
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-925 0.2930
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-926 0.2900
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-927 0.2851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-928 0.2823
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-929 0.2782
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-930 0.2754
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-931 0.2775
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-932 0.2708
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-933 0.2621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-934 0.2559
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-935 0.2665
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-936 0.2555
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-937 0.2513
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-938 0.2454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-939 0.2692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-940 0.2580
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-941 0.2446
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-942 0.2423
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-943 0.2288
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-944 0.2267
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-945 0.2383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-946 0.2328
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-947 0.2231
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-948 0.2180
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-949 0.2256
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-950 0.2377
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-951 0.2282
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-952 0.2167
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-953 0.2478
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-954 0.2377
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-955 0.2256
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-956 0.2167
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-957 0.2113
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-958 0.2031
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-959 0.2059
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-960 0.1931
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-961 0.1783
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-962 0.1676
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-963 0.1873
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-964 0.1692
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-965 0.1612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-966 0.1517
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-967 0.1948
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-968 0.2008
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-969 0.1811
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-970 0.1758
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-971 0.1541
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-972 0.1485
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-973 0.1587
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-974 0.1334
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-975 0.1297
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-976 0.1251
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-977 0.1417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-978 0.1335
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-979 0.1195
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-980 0.1128
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-981 0.2054
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-982 0.2086
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-983 0.1880
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-984 0.1851
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-985 0.2105
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-986 0.1897
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-987 0.1660
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-988 0.1646
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-989 0.1394
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-990 0.1383
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-991 0.1621
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-992 0.1363
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-993 0.1073
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-994 0.1052
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-995 0.1088
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-996 0.07612
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-997 0.07509
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-998 0.07364
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-999 0.1097
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1000 0.07672
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1001 0.04021
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1002 0.03991
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1003 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1004 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1005 0.03939
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1006 0.03866
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1007 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1008 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1009 0.09454
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1010 0.08944
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1011 0.09882
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1012 0.06936
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1013 0.06647
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1014 0.06302
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1015 0.1023
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1016 0.07174
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1017 0.03770
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1018 0.03650
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1019 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1020 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1021 0.03505
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1022 0.03331
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1023 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1024 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1025 0.03125
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1026 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1027 0.05895
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1028 0.05417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1029 0.02884
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1030 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1031 0.08343
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1032 0.1050
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1033 0.09586
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1034 0.07640
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1035 0.06821
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1036 0.04860
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1037 0.08525
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1038 0.07294
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1039 0.05867
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1040 0.04207
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1041 0.02601
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1042 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1043 0.02269
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1044 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1045 0.1240
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1046 0.1406
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1047 0.1277
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1048 0.1129
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1049 0.1550
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1050 0.1406
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1051 0.1240
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1052 0.1129
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1053 0.1050
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1054 0.09586
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1055 0.1000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1056 0.08525
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1057 0.06821
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1058 0.05867
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1059 0.07640
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1060 0.05417
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1061 0.04860
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1062 0.04207
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1063 0.08343
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1064 0.05895
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1065 0.03125
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1066 0.02884
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1067 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1068 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1069 0.02601
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1070 0.02269
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1071 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1072 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1073 0.01876
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1074 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1075 0.03438
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1076 0.02521
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1077 0.01403
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1078 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1079 0.04751
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1080 0.03438
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1081 0.01876
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1082 0.01403
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1083 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1084 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1085 0.008123
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1086 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1087 0.000
+DEAL::t6Vector1Zf t12SparseMatrix1Zf-1088 0.000
+DEAL::Number of active cells: 1024
+DEAL::Total number of cells: 1365
+DEAL::Number of degrees of freedom: 1089
 DEAL::t11BlockVector2i2Zd t17BlockSparseMatrix3Zdi2i2-0 0.000
 DEAL::t11BlockVector2i2Zd t17BlockSparseMatrix3Zdi2i2-1 0.000
 DEAL::t11BlockVector2i2Zd t17BlockSparseMatrix3Zdi2i2-2 0.008123
@@ -3275,3 +4367,4 @@ DEAL::t11BlockVector2i3Zd t17BlockSparseMatrix3Zdi3i3-1085 0.008123
 DEAL::t11BlockVector2i3Zd t17BlockSparseMatrix3Zdi3i3-1086 0.000
 DEAL::t11BlockVector2i3Zd t17BlockSparseMatrix3Zdi3i3-1087 0.000
 DEAL::t11BlockVector2i3Zd t17BlockSparseMatrix3Zdi3i3-1088 0.000
+DEAL::Checking 4 data sets.

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.