0020968: EDF1545 SMESH: Problem in de creation of a mesh group on geometry

Detect not computed sub-shapes in case if algo computes many
   submeshes at once
This commit is contained in:
eap 2010-09-03 14:19:16 +00:00
parent 6d9d5ab070
commit ea6aa32f23

View File

@ -265,7 +265,7 @@ bool SMESH_subMesh::SubMeshesComputed()
break; // the rest subMeshes are all of less dimension break; // the rest subMeshes are all of less dimension
SMESHDS_SubMesh * ds = sm->GetSubMeshDS(); SMESHDS_SubMesh * ds = sm->GetSubMeshDS();
bool computeOk = (sm->GetComputeState() == COMPUTE_OK || bool computeOk = (sm->GetComputeState() == COMPUTE_OK ||
(ds && ( ds->NbNodes() || ds->NbElements() ))); (ds && ( dimToCheck ? ds->NbElements() : ds->NbNodes() )));
if (!computeOk) if (!computeOk)
{ {
int type = ss.ShapeType(); int type = ss.ShapeType();
@ -1425,18 +1425,29 @@ bool SMESH_subMesh::ComputeStateEngine(int event)
else else
ret = false; ret = false;
} }
if (ret && !_alwaysComputed && shape == _subShape) { // check if anything was built TopExp_Explorer subS(shape, _subShape.ShapeType());
ret = ( GetSubMeshDS() && ( GetSubMeshDS()->NbElements() || GetSubMeshDS()->NbNodes() )); if (ret) // check if anything was built
{
for (; ret && subS.More(); subS.Next())
ret = _father->GetSubMesh( subS.Current() )->IsMeshComputed();
} }
bool isComputeErrorSet = !CheckComputeError( algo, shape ); bool isComputeErrorSet = !CheckComputeError( algo, shape );
if (!ret && !isComputeErrorSet) if (!ret && !isComputeErrorSet)
{ {
// Set _computeError // Set _computeError
if ( !_computeError ) for (subS.ReInit(); subS.More(); subS.Next())
_computeError = SMESH_ComputeError::New(); {
if ( _computeError->IsOK() ) SMESH_subMesh* sm = _father->GetSubMesh( subS.Current() );
_computeError->myName = COMPERR_ALGO_FAILED; if ( !sm->IsMeshComputed() )
_computeState = FAILED_TO_COMPUTE; {
if ( !sm->_computeError )
sm->_computeError = SMESH_ComputeError::New();
if ( sm->_computeError->IsOK() )
sm->_computeError->myName = COMPERR_ALGO_FAILED;
sm->_computeState = FAILED_TO_COMPUTE;
sm->_computeError->myAlgo = algo;
}
}
} }
if (ret) if (ret)
{ {