Remove debug output

This commit is contained in:
Matthias Hochsteger 2024-02-09 15:40:05 +01:00
parent dd68bae1a3
commit b8267d046e

View File

@ -1561,10 +1561,8 @@ struct GrowthVectorLimiter {
if (growthvectors[pi].Length2() != 0) { if (growthvectors[pi].Length2() != 0) {
if(special_boundary_points.count(pi)) 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); add_points(pi, group.growth_vector, group.new_points);
cout << "new points " << pi << endl << group.new_points << endl;
}
} }
else else
add_points(pi, growthvectors[pi], mapto[pi]); add_points(pi, growthvectors[pi], mapto[pi]);