diff --git a/AMDiS/libtool b/AMDiS/libtool
index 2144386149ea400cd8a80c98a6795840876d592b..6817f526570ed11085c42792041dd24722a31e23 100755
--- a/AMDiS/libtool
+++ b/AMDiS/libtool
@@ -44,7 +44,7 @@ available_tags=" CXX F77"
 
 # ### BEGIN LIBTOOL CONFIG
 
-# Libtool was configured on host deimos101:
+# Libtool was configured on host deimos104:
 
 # Shell to use when invoking shell scripts.
 SHELL="/bin/sh"
@@ -6760,7 +6760,7 @@ build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
 # End:
 # ### BEGIN LIBTOOL TAG CONFIG: CXX
 
-# Libtool was configured on host deimos101:
+# Libtool was configured on host deimos104:
 
 # Shell to use when invoking shell scripts.
 SHELL="/bin/sh"
@@ -7065,7 +7065,7 @@ include_expsyms=""
 
 # ### BEGIN LIBTOOL TAG CONFIG: F77
 
-# Libtool was configured on host deimos101:
+# Libtool was configured on host deimos104:
 
 # Shell to use when invoking shell scripts.
 SHELL="/bin/sh"
diff --git a/AMDiS/src/parallel/MeshDistributor.cc b/AMDiS/src/parallel/MeshDistributor.cc
index 22557f1bf38d0fc7f3183796d4e8e61875d631fd..eb1ca3d7935472f66d88fc07b0e04bee9bf72c6d 100644
--- a/AMDiS/src/parallel/MeshDistributor.cc
+++ b/AMDiS/src/parallel/MeshDistributor.cc
@@ -2011,7 +2011,7 @@ namespace AMDiS {
     FUNCNAME("MeshDistributor::serialize()");
 
     checkMeshChange(false);
-
+    
     partitioner->serialize(out);
 
     SerUtil::serialize(out, elemWeights);
diff --git a/AMDiS/src/parallel/ParMetisPartitioner.cc b/AMDiS/src/parallel/ParMetisPartitioner.cc
index ee45e72c8f96d593ef98c71455d2f75a4d7e69e9..2116c755dc187fbb09cb28b23d09923f86bfc68e 100644
--- a/AMDiS/src/parallel/ParMetisPartitioner.cc
+++ b/AMDiS/src/parallel/ParMetisPartitioner.cc
@@ -298,55 +298,8 @@ namespace AMDiS {
       tpwgts[i] = 1.0 / nparts;
    
     float scale = 10000.0 / maxWgt;
-
-
-    // === Scale element weights. ===
-
-    int smin = 9999999;
-    int smax = 0;
-    int ssum = 0;
-
-    for (int i = 0; i < nElements; i++) {
-      wgts[i] = static_cast<int>(floatWgts[i] * scale);
-      smin = std::min(smin, wgts[i]);
-      smax = std::max(smax, wgts[i]);
-      ssum += wgts[i];
-    }
-
-    mpi::globalMin(smin);
-    mpi::globalMax(smax);
-    mpi::globalAdd(ssum);
-
-    MSG("DATA   SMIN = %d   SMAX = %d    SSUM = %d\n", smin, smax, ssum);
-
-    int kpart = ssum / mpiSize;
-    int kpartMax = 0;
     for (int i = 0; i < nElements; i++)
-      if (wgts[i] < kpart)
-	kpartMax = std::max(kpartMax, wgts[i]);
-
-    mpi::globalMax(kpartMax);
-
-    MSG("KPART MAX: %d\n", kpartMax);
-
-    smin = 9999999;
-    smax = 0;
-    ssum = 0;
-
-    for (int i = 0; i < nElements; i++) {
-      wgts[i] = std::min(wgts[i], kpartMax);
-      wgts[i] = std::max(wgts[i], 1);
-
-      smin = std::min(smin, wgts[i]);
-      smax = std::max(smax, wgts[i]);
-      ssum += wgts[i];
-    }
-
-    mpi::globalMin(smin);
-    mpi::globalMax(smax);
-    mpi::globalAdd(ssum);
-
-    MSG("DATA   SMIN = %d   SMAX = %d    SSUM = %d\n", smin, smax, ssum);
+      wgts[i] = static_cast<int>(floatWgts[i] * scale);
 
 
     // === Start ParMETIS. ===
diff --git a/AMDiS/src/parallel/ParallelDebug.cc b/AMDiS/src/parallel/ParallelDebug.cc
index d7b5e06aa173ea50733e011e28902589c9c066db..a98db4c008005d19d41bb03915760cb8088b9cf2 100644
--- a/AMDiS/src/parallel/ParallelDebug.cc
+++ b/AMDiS/src/parallel/ParallelDebug.cc
@@ -730,9 +730,9 @@ namespace AMDiS {
   {
     FUNCNAME("ParallelDebug::printBoundaryInfo()");
 
-    int tmp = 1;
+    int tmp = 0;
     GET_PARAMETER(0, "parallel->debug->print boundary info", "%d", &tmp);
-    if (tmp <= 0)
+    if (tmp <= 1)
       return;
 
     for (InteriorBoundary::iterator it(pdb.myIntBoundary); !it.end(); ++it) {