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 13f5973d2929..b68723d67e84 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; }