diff --git a/applications/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshCalcDualMesh.C b/applications/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshCalcDualMesh.C index 2f3a2717d7..20c0c8f28c 100644 --- a/applications/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshCalcDualMesh.C +++ b/applications/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshCalcDualMesh.C @@ -129,11 +129,7 @@ void Foam::conformalVoronoiMesh::calcDualMesh PackedBoolList boundaryPts(number_of_cells(), false); - indexDualVertices - ( - points, - boundaryPts - ); + indexDualVertices(points, boundaryPts); { // Ideally requires a no-risk face filtering to get rid of zero area @@ -191,11 +187,7 @@ void Foam::conformalVoronoiMesh::calcDualMesh // Reindexing the Delaunay cells and regenerating the // points resets the mesh to the starting condition. - indexDualVertices - ( - points, - boundaryPts - ); + indexDualVertices(points, boundaryPts); { Info<< nl << "Merging close points" << endl; @@ -642,10 +634,12 @@ Foam::label Foam::conformalVoronoiMesh::mergeCloseDualVertices Info<< "mergeCloseDualVertices:" << " coincident distance:" << coincidentDistanceSqr << " closenessTolerance:" << closenessTolerance << endl - << " identical points : " + << " zero-length edges : " << returnReduce(nIdentical, sumOp