From fb259cbbd36f6cb5978e6dc0342bbede9ba6e0a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Sat, 6 Dec 2025 13:52:06 +0100 Subject: [PATCH] Better debug file name --- .../CGAL/Polygon_mesh_processing/internal/Snapping/snap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h index 5936cea3db5..4403e50fabe 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h @@ -107,7 +107,7 @@ void simplify_range(HalfedgeRange& halfedge_range, #ifdef CGAL_PMP_SNAP_DEBUG_OUTPUT static int i = 0; - std::ofstream out_in("results/input_" + std::string((i++ == 0) ? "A" : "B") + ".polylines.txt"); + std::ofstream out_in("results/before_simplification_" + std::to_string(i++) + ".polylines.txt"); out_in.precision(17); #endif