From c85711d58fa84201d8728caf320d6eec0a9b1869 Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Fri, 3 Nov 2023 09:50:25 +0100 Subject: [PATCH] test cleaning --- ...ing_polyhedral_complex_with_manifold_and_min_size.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Mesh_3/test/Mesh_3/test_meshing_polyhedral_complex_with_manifold_and_min_size.cpp b/Mesh_3/test/Mesh_3/test_meshing_polyhedral_complex_with_manifold_and_min_size.cpp index 13f5973d292..b68723d67e8 100644 --- a/Mesh_3/test/Mesh_3/test_meshing_polyhedral_complex_with_manifold_and_min_size.cpp +++ b/Mesh_3/test/Mesh_3/test_meshing_polyhedral_complex_with_manifold_and_min_size.cpp @@ -1,5 +1,3 @@ -#define CGAL_MESH_3_VERBOSE 1 - #include #include @@ -78,13 +76,8 @@ int main() // Mesh generation C3t3 c3t3 = CGAL::make_mesh_3(domain, criteria, params::no_perturb(), params::no_exude(), - params::manifold(), - params::mesh_3_dump()); + params::manifold()); - // Output - std::ofstream medit_file("out.mesh"); - CGAL::IO::write_MEDIT(medit_file, c3t3); - medit_file.close(); return EXIT_SUCCESS; }