diff --git a/AMDiS/src/ProblemInstat.cc b/AMDiS/src/ProblemInstat.cc index e4f07c84b5c13d836f5b309e39cc11ecf9590c29..f9da2d06afaf6fc23fe0b027368d2588001e4bf6 100644 --- a/AMDiS/src/ProblemInstat.cc +++ b/AMDiS/src/ProblemInstat.cc @@ -125,7 +125,7 @@ namespace AMDiS { oldSolution = new SystemVector("old solution", problemStat->getFeSpaces(), size); for (int i = 0; i < size; i++) { oldSolution->setDOFVector(i, new DOFVector(problemStat->getFeSpace(i), - name + "->uOld")); + name + "_uOld")); oldSolution->getDOFVector(i)->setCoarsenOperation(COARSE_INTERPOL); if (problemStat->getEstimator(i)) diff --git a/AMDiS/src/parallel/MeshDistributor.cc b/AMDiS/src/parallel/MeshDistributor.cc index 740b171b704ea7cb289a7fc7c790fb6d25a8013b..2c62f0b204b42017cf44e729ce3556d3ef5c5d19 100644 --- a/AMDiS/src/parallel/MeshDistributor.cc +++ b/AMDiS/src/parallel/MeshDistributor.cc @@ -1491,6 +1491,7 @@ namespace AMDiS { partitioner->getRecvElements().size() == 0)) ("Partition is empty, should not happen!\n"); + // === Create map that maps macro element indices to pointers to the === // === macro elements. === @@ -1859,15 +1860,15 @@ namespace AMDiS { #if (DEBUG != 0) - static int fileNumber(0); //improvised counter for adapt Iteration - stringstream ss; - ss << debugOutputDir << "elementMaps." << fileNumber ; - - //write local Element Maps to csv file - ParallelDebug::writeCsvElementMap(feSpaces[0], - *(dofMaps[0]), - ss.str(), "csv"); - fileNumber++; + static int fileNumber(0); //improvised counter for adapt Iteration + stringstream ss; + ss << debugOutputDir << "elementMaps." << fileNumber ; + + //write local Element Maps to csv file + ParallelDebug::writeCsvElementMap(feSpaces[0], + *(dofMaps[0]), + ss.str(), "csv"); + fileNumber++; ParallelDebug::testDofContainerCommunication(*this);