From b8267d046ed7763c08e4ebbf4ca572d5f52b5ef0 Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Fri, 9 Feb 2024 15:40:05 +0100 Subject: [PATCH] Remove debug output --- libsrc/meshing/boundarylayer.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libsrc/meshing/boundarylayer.cpp b/libsrc/meshing/boundarylayer.cpp index d3bf1ccc..293918e2 100644 --- a/libsrc/meshing/boundarylayer.cpp +++ b/libsrc/meshing/boundarylayer.cpp @@ -1561,10 +1561,8 @@ struct GrowthVectorLimiter { if (growthvectors[pi].Length2() != 0) { if(special_boundary_points.count(pi)) { - for(auto & group : special_boundary_points[pi].growth_groups) { + for(auto & group : special_boundary_points[pi].growth_groups) add_points(pi, group.growth_vector, group.new_points); - cout << "new points " << pi << endl << group.new_points << endl; - } } else add_points(pi, growthvectors[pi], mapto[pi]);