1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0024157: Parallelization of assembly part of BO

The branch deals with the parallelization of Post-Treatment part of the Builder
This commit is contained in:
pkv
2014-04-22 11:16:46 +04:00
committed by apn
parent 85bcc07243
commit c26b5a34bc
3 changed files with 699 additions and 470 deletions

View File

@@ -362,7 +362,6 @@ void BOPAlgo_Builder::PerformInternal(const BOPAlgo_PaveFiller& theFiller)
//=======================================================================
void BOPAlgo_Builder::PostTreat()
{
//BRepLib::SameParameter(myShape, 1.e-7, Standard_True);
BOPTools_AlgoTools::CorrectTolerances(myShape, 0.05);
BOPTools_AlgoTools::CorrectShapeTolerances(myShape);
BOPTools_AlgoTools::CorrectTolerances(myShape, 0.05, myRunParallel);
BOPTools_AlgoTools::CorrectShapeTolerances(myShape, myRunParallel);
}