From 74a312d83f886fce4bd527c35bda14aa5a7d01fc Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Fri, 3 Aug 2012 21:39:00 +0200
Subject: [PATCH] Cleanup

---
 dune/tectonic/ellipticenergy.hh | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/dune/tectonic/ellipticenergy.hh b/dune/tectonic/ellipticenergy.hh
index 39aa3f0f..d64b8ab1 100644
--- a/dune/tectonic/ellipticenergy.hh
+++ b/dune/tectonic/ellipticenergy.hh
@@ -68,16 +68,10 @@ template <int dim> class EllipticEnergy {
     double const mgx = mg * x;
     if (pgx >= 0 && mgx >= 0) {
       ret = pg;
-      dverb << "## Directional derivative (as per scalar product w/ "
-               "semigradient): " << -(ret * mg)
-            << " (coordinates of the restriction)" << std::endl;
       ret *= -1;
       return true;
     } else if (pgx <= 0 && mgx <= 0) {
       ret = mg;
-      dverb << "## Directional derivative (as per scalar product w/ "
-               "semigradient): " << -(ret * pg)
-            << " (coordinates of the restriction)" << std::endl;
       ret *= -1;
       return true;
     } else {
@@ -86,9 +80,6 @@ template <int dim> class EllipticEnergy {
       SmallVector d;
       smoothGradient(x, d);
       complementaryProjection(d, x, ret);
-      dverb << "## Directional derivative (as per scalar product w/ "
-               "semigradient): " << -(ret * ret)
-            << " (coordinates of the restriction)" << std::endl;
       ret *= -1;
       return false;
     }
-- 
GitLab