From 2c8d6db8a5df4fe8418a152663f742ac0a4d2710 Mon Sep 17 00:00:00 2001
From: Thomas Witkowski <thomas.witkowski@gmx.de>
Date: Mon, 10 Nov 2008 08:58:23 +0000
Subject: [PATCH] * Removed some debug output

---
 AMDiS/src/Lagrange.cc    | 5 -----
 AMDiS/src/ProblemScal.cc | 2 ++
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/AMDiS/src/Lagrange.cc b/AMDiS/src/Lagrange.cc
index 42b3f42a..8a6ac65a 100644
--- a/AMDiS/src/Lagrange.cc
+++ b/AMDiS/src/Lagrange.cc
@@ -49,11 +49,8 @@ namespace AMDiS {
 
   Lagrange::~Lagrange()
   {
-    std::cout << "DELETE LAGRANGE" << std::endl;
-    std::cout << "BARY ADR = " << bary << std::endl;
     for (int i = 0; i < static_cast<int>(bary->size()); i++) {
       if ((*bary)[i]) {
-	std::cout << "DEL ADR = " << (*bary)[i] << std::endl;
 	DELETE (*bary)[i];
 	(*bary)[i] = NULL;
       }
@@ -650,9 +647,7 @@ namespace AMDiS {
     if (dimIndex == numCoords - 1) {
       (*vec)[coordInd[dimIndex]] = double(rest) / degree;
       DimVec<double>* newCoords = NEW DimVec<double>(*vec);
-      std::cout << "BARY ADR = " << bary << std::endl;
       bary->push_back(newCoords);
-      std::cout << "ADD ADR = " << newCoords << std::endl;
     } else {
       for (int i = rest - 1; i >= 1; i--) {
 	(*vec)[coordInd[dimIndex]] = double(i) / degree;
diff --git a/AMDiS/src/ProblemScal.cc b/AMDiS/src/ProblemScal.cc
index 68cb2b3e..957dc59a 100644
--- a/AMDiS/src/ProblemScal.cc
+++ b/AMDiS/src/ProblemScal.cc
@@ -425,6 +425,8 @@ namespace AMDiS {
     // create finite element space
     int degree = 1;
     GET_PARAMETER(0, name_ + "->polynomial degree" ,"%d", &degree);
+    std::cout << degree << std::endl;
+    WAIT_REALLY;
     feSpace_ = FiniteElemSpace::provideFESpace(NULL,
 					       Lagrange::getLagrange(mesh->getDim(), degree),
 					       mesh,
-- 
GitLab