Skip to content
Snippets Groups Projects
Commit 1a237188 authored by Tom Fischer's avatar Tom Fischer
Browse files

commented out a debug message (concerning a concrete mesh?)

parent 903433ba
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ int main(int argc, char *argv[])
// std::cout << "time for reading: " << run_time.elapsed() << " s" << std::endl;
INFO ("time for reading: %f s", run_time.elapsed());
/*
unsigned elem_id = 25000;
const MeshLib::Element* e = mesh->getElement(elem_id);
const size_t nElems = mesh->getNElements();
......@@ -64,8 +64,9 @@ int main(int argc, char *argv[])
{
for (unsigned j=0; j< nElems; j++)
if (mesh->getElement(j) == e->getNeighbor(i))
std::cout << "neighbour of element " << elem_id << elem_id << " : " << j << std::endl;
std::cout << "neighbour of element " << elem_id << " : " << j << std::endl;
}
*/
delete mesh;
delete logogCout;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment