From f6cc29b82edd8d0bd055b2548f4df66cc94c05f7 Mon Sep 17 00:00:00 2001
From: mattijs <mattijs>
Date: Thu, 4 Aug 2011 16:49:47 +0100
Subject: [PATCH] STYLE: conformalVoronoiMeshCalcDualMesh: updated message

---
 .../conformalVoronoiMeshCalcDualMesh.C         | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/applications/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshCalcDualMesh.C b/applications/utilities/mesh/generation/cvMesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMeshCalcDualMesh.C
index 2f3a2717d7c..20c0c8f28ca 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<label>()) << endl
-            << "    processor edges  : "
+            << "    protected processor edges : "
             << returnReduce(nProcEdge, sumOp<label>()) << endl
+            << "    collapsed edges           : "
+            << returnReduce(nPtsMerged, sumOp<label>()) << endl
             << endl;
     }
 
-- 
GitLab