Salome HOME
Adding comments
[modules/smesh.git] / src / SMESH / SMESH_Gen.cxx
index 922a6df95f40039f20d4965a9251f5f6b47f4321..2a7e23af9cc1f9ab51a698f5bcae72fec78a0582 100644 (file)
@@ -161,6 +161,11 @@ SMESH_Mesh* SMESH_Gen::CreateMesh(bool theIsEmbeddedMode)
 }
 
 
+//=============================================================================
+/*!
+ * Algo to run the computation of all the submeshes of a mesh in sequentila
+ */
+//=============================================================================
 
 bool SMESH_Gen::sequentialComputeSubMeshes(
           SMESH_Mesh & aMesh,
@@ -225,8 +230,8 @@ bool SMESH_Gen::sequentialComputeSubMeshes(
 
 //=============================================================================
 /*
- * Parallel compute of a submesh
- * This function is used to pass to thread_pool
+ * compute of a submesh
+ * This function is passed to the thread pool
  */
 //=============================================================================
 const std::function<void(SMESH_subMesh*,
@@ -256,6 +261,12 @@ const std::function<void(SMESH_subMesh*,
 
 });
 
+//=============================================================================
+/*!
+ * Algo to run the computation of all the submeshes of a mesh in parallel
+ */
+//=============================================================================
+
 bool SMESH_Gen::parallelComputeSubMeshes(
           SMESH_Mesh & aMesh,
           const TopoDS_Shape & aShape,