Skip to content
Snippets Groups Projects
Commit 526e4fd2 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Removed some debug output.

parent 39e4e688
Branches
No related tags found
No related merge requests found
......@@ -49,8 +49,6 @@ namespace AMDiS {
{
FUNCNAME("BoundaryManager::addBoundaryCondition()");
MSG("ADD BC\n");
BoundaryType type = localBC->getBoundaryType();
TEST_EXIT(localBCs[type] == NULL)
("There is already a condition for this type %d.\n",type);
......
......@@ -206,20 +206,22 @@ namespace AMDiS {
}
}
#if (DEBUG != 0)
std::map<BoundaryType, VertexVector*>::iterator assoc;
std::map<BoundaryType, VertexVector*>::iterator assocEnd =
mesh->periodicAssociations.end();
for (assoc = mesh->periodicAssociations.begin(); assoc != assocEnd; ++assoc) {
for (assoc = mesh->periodicAssociations.begin();
assoc != assocEnd; ++assoc)
for (int i = 0; i < mesh->getNumberOfVertices(); i++)
if (i != (*(assoc->second))[i])
MSG("association %d: vertex %d -> vertex %d\n",
assoc->first, i, (*(assoc->second))[i]);
}
assoc->first, i, (*(assoc->second))[i]);
for (int i = 0; i < mesh->getNumberOfVertices(); i++)
if (periodicMap.getEntry(i) != -1)
MSG("identification : vertex %d is now vertex %d\n",
i, periodicMap.getEntry(i));
#endif
} // periodicFile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment