From 197fe1623103f7196ecb517560f641750a3de0a5 Mon Sep 17 00:00:00 2001
From: Thomas Witkowski <thomas.witkowski@gmx.de>
Date: Thu, 22 Jul 2010 16:14:37 +0000
Subject: [PATCH] And removed some debug information output.

---
 AMDiS/src/parallel/MeshDistributor.cc | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/AMDiS/src/parallel/MeshDistributor.cc b/AMDiS/src/parallel/MeshDistributor.cc
index 369e10ac..2aeaf501 100644
--- a/AMDiS/src/parallel/MeshDistributor.cc
+++ b/AMDiS/src/parallel/MeshDistributor.cc
@@ -2162,15 +2162,6 @@ namespace AMDiS {
     SerUtil::serialize(out, nRankDofs);
     SerUtil::serialize(out, nOverallDofs);
 
-    TraverseStack stack;
-    ElInfo *elInfo = stack.traverseFirst(mesh, -1, Mesh::CALL_EVERY_EL_PREORDER);
-    while (elInfo) {
-      Element *el = elInfo->getElement();
-      //      MSG("WHILE DESER SET EL %d\n", el->getIndex());
-
-      elInfo = stack.traverseNext(elInfo);
-    }
-    
     myIntBoundary.serialize(out);
     otherIntBoundary.serialize(out);
     periodicBoundary.serialize(out);
@@ -2212,7 +2203,6 @@ namespace AMDiS {
     while (elInfo) {
       Element *el = elInfo->getElement();
       elIndexMap[el->getIndex()] = el;
-      //      MSG("WHILE DESER SET EL %d\n", el->getIndex());
 
       if (el->isLeaf()) {
 	elDofIter.reset(el);
-- 
GitLab