Salome HOME
PAL13330( When mesh generation does not success, trace where )
authoreap <eap@opencascade.com>
Thu, 12 Apr 2007 09:38:17 +0000 (09:38 +0000)
committereap <eap@opencascade.com>
Thu, 12 Apr 2007 09:38:17 +0000 (09:38 +0000)
   care of states of descendants of submesh where !algo->NeedDescretBoundary()

src/SMESH/SMESH_subMesh.cxx

index 78bc9ce7a0935aca40937667fa69fe0eaf4546a9..7c9cba60ff66d9ac8dee4bcae61db7eae66d316f 100644 (file)
@@ -1626,7 +1626,7 @@ bool SMESH_subMesh::CheckComputeError(SMESH_Algo* theAlgo)
     _computeState = COMPUTE_OK;
   }
   // Check state of submeshes
-  if ( !theAlgo->NeedDescretBoundary() && theAlgo->OnlyUnaryInput() ) {
+  if ( !theAlgo->NeedDescretBoundary() /*&& theAlgo->OnlyUnaryInput()*/ ) {
     SMESH_subMeshIteratorPtr smIt = getDependsOnIterator(false,false);
     while ( smIt->more() )
       if ( !smIt->next()->CheckComputeError( theAlgo ))