From 2a41e1dc99a1a627db47f7eeea666ecedfe6a492 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 3 Dec 2024 07:16:34 +0000 Subject: [PATCH] change parameters for shorter debug cycle. To undo befoe merging --- .../test_triply_periodic_minimal_surfaces.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Periodic_3_mesh_3/test/Periodic_3_mesh_3/test_triply_periodic_minimal_surfaces.cpp b/Periodic_3_mesh_3/test/Periodic_3_mesh_3/test_triply_periodic_minimal_surfaces.cpp index cab19a02eda..a9595879a13 100644 --- a/Periodic_3_mesh_3/test/Periodic_3_mesh_3/test_triply_periodic_minimal_surfaces.cpp +++ b/Periodic_3_mesh_3/test/Periodic_3_mesh_3/test_triply_periodic_minimal_surfaces.cpp @@ -237,10 +237,10 @@ C3t3 make_mesh(const Labeling_function& labeling_function, const Iso_cuboid& can Periodic_mesh_domain domain(labeling_function, canonical_cube); Periodic_mesh_criteria criteria(facet_angle = 30., - facet_size = 0.03 * 2 /*domain's edge length*/, - facet_distance = 0.03 * 2 /*domain's edge length*/, + facet_size = 0.1 * 2 /*domain's edge length*/, + facet_distance = 0.1 * 2 /*domain's edge length*/, cell_radius_edge_ratio = 2., - cell_size = 0.05); + cell_size = 0.5); return CGAL::make_periodic_3_mesh_3(domain, criteria); }