]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Ups, remove debug output again.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 6 Apr 2001 16:40:54 +0000 (16:40 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 6 Apr 2001 16:40:54 +0000 (16:40 +0000)
git-svn-id: https://svn.dealii.org/trunk@4398 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/deal.II/source/numerics/derivative_approximation.cc

index 1493891c9daa949c497ecdab039a3c38a040e19b..7bdaf65bdd50f3971b20f1485fc6811bfc78bf02 100644 (file)
@@ -159,10 +159,6 @@ double
 DerivativeApproximation::SecondDerivative<3>::
 derivative_norm (const Derivative &d)
 {
-  cout << "**************** d" << endl
-       << d
-       << endl;
-
 /*
   compute the three eigenvalues of the tensor @p{d} and take the
   largest. one could use the following maple script to generate C
@@ -228,18 +224,12 @@ void
 DerivativeApproximation::SecondDerivative<dim>::symmetrize (Derivative &d)
 {
                                   // symmetrize non-diagonal entries
-  cout << "----------1 d" << endl
-       << d
-       << endl;
   for (unsigned int i=0; i<dim; ++i)
     for (unsigned int j=i+1; j<dim; ++j)
       {
        const double s = (d[i][j] + d[j][i]) / 2;
        d[i][j] = d[j][i] = s;
       };
-  cout << "----------2 d" << endl
-       << d
-       << endl;
 };
 
 
@@ -546,8 +536,6 @@ DerivativeApproximation::approximate (const Mapping<dim>    &mapping,
                                       // gradient
       AssertThrow (determinant(Y) != 0,
                   ExcInsufficientDirections());
-      cout << "--------------- Y" << endl
-          << Y << endl;
       
                                       // first symmetrize g
       DerivativeDescription::symmetrize (projected_derivative);

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.