From 4e41cdee5ef5662ecb1fa0308b637a9da961f893 Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Fri, 28 Oct 2011 18:34:45 +0200
Subject: [PATCH] Cleanup

---
 src/myblockproblem.hh | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/src/myblockproblem.hh b/src/myblockproblem.hh
index 47d51840..6e3bb608 100644
--- a/src/myblockproblem.hh
+++ b/src/myblockproblem.hh
@@ -109,10 +109,6 @@ class MyBlockProblem<ConvexProblemTypeTEMPLATE>::IterateObject {
           localA = &(*it); // localA = &A[m][m]
 
         (*it).umv(u[j], localb); // localb += A[m][j] * u[j]
-        LocalMatrixType foo = problem.A[j][m];
-        foo -= problem.A[m][j];
-        // if (foo.infinity_norm() != 0)
-        //   std::cout << "Indices: " << col << ", " << m << std::endl;
       }
       localb -= problem.f[m];
       assert(localA != NULL);
@@ -124,11 +120,10 @@ class MyBlockProblem<ConvexProblemTypeTEMPLATE>::IterateObject {
 
       LocalVectorType ui_copy = ui;
 
-      // std::cout << "Norm before: " << ui.two_norm() << std::endl;
       LocalVectorType correction;
       for (size_t i = 1; i <= 5; ++i) {
         Dune::minimise(localJ, ui_copy, correction);
-        ui_copy += correction; // This should be correct
+        ui_copy += correction;
       }
 
       ui = ui_copy;
-- 
GitLab