remove debug output

This commit is contained in:
Joachim Schoeberl 2013-04-02 20:31:20 +00:00
parent 27861d15a0
commit 47eb0dc600
2 changed files with 4 additions and 4 deletions

View File

@ -30,11 +30,13 @@ static void STLFindEdges (STLGeometry & geom,
PrintMessage(3,"Mesh Lines");
/*
cout << geom.GetNLines() << " lines" << endl;
double totnp = 0;
for (int i = 1; i <= geom.GetNLines(); i++)
totnp += geom.GetLine(i)->NP();
cout << "avg np per line " << totnp/geom.GetNLines() << endl;
*/
for (int i = 1; i <= geom.GetNLines(); i++)
{
@ -42,8 +44,6 @@ static void STLFindEdges (STLGeometry & geom,
SetThreadPercent(100.0 * (double)i/(double)geom.GetNLines());
}
NgProfiler::Print(stdout);
geom.meshpoints.SetSize(0); //testing
geom.meshlines.SetSize(0); //testing
for (int i = 1; i <= meshpoints.Size(); i++)
@ -734,7 +734,7 @@ void STLSurfaceMeshing1 (STLGeometry & geom,
Render();
}
NgProfiler::Print(stdout);
// NgProfiler::Print(stdout);
mesh.CalcSurfacesOfNode();
}

View File

@ -1081,7 +1081,7 @@ void STLGeometry :: RestrictLocalH(class Mesh & mesh, double gh)
}
PopStatus();
NgProfiler::Print(stdout);
// NgProfiler::Print(stdout);
}
if (stlparam.resthlinelengthenable)