Better debug file name

This commit is contained in:
Mael Rouxel-Labbé 2025-12-06 13:52:06 +01:00
parent 12d71ca738
commit fb259cbbd3
1 changed files with 1 additions and 1 deletions

View File

@ -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