remove debug output

This commit is contained in:
eap 2010-08-19 09:41:24 +00:00
parent 1aa25c0e23
commit 23a1a900c3

View File

@ -756,7 +756,6 @@ bool StdMeshers_QuadToTriaAdaptor::Compute(SMESH_Mesh& aMesh)
bool StdMeshers_QuadToTriaAdaptor::Compute2ndPart(SMESH_Mesh& aMesh) bool StdMeshers_QuadToTriaAdaptor::Compute2ndPart(SMESH_Mesh& aMesh)
{ {
cout << "Compute2ndPart(), nb pyramids = " << myPyram2Trias.size() << endl;
SMESHDS_Mesh * meshDS = aMesh.GetMeshDS(); SMESHDS_Mesh * meshDS = aMesh.GetMeshDS();
// check intersections between created pyramids // check intersections between created pyramids
@ -842,7 +841,6 @@ bool StdMeshers_QuadToTriaAdaptor::Compute2ndPart(SMESH_Mesh& aMesh)
if(nbc>0) if(nbc>0)
{ {
cout << "Merge pyram " << PrmI->GetID() <<" to " << PrmJ->GetID() << endl;
// Merge the two pyramids and others already merged with them // Merge the two pyramids and others already merged with them
// initialize merge info of pyramids // initialize merge info of pyramids
@ -1001,7 +999,6 @@ bool StdMeshers_QuadToTriaAdaptor::Compute2ndPart(SMESH_Mesh& aMesh)
delete myElemSearcher; delete myElemSearcher;
myElemSearcher=0; myElemSearcher=0;
cout << "END Compute2ndPart()" << endl;
return true; return true;
} }