From 516ef8f4c4e16db5b0e8703367a32fd64c9bd6c5 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 14 May 2024 13:28:40 +0100 Subject: [PATCH] show that ghost status gets lost --- .../test/Triangulation_on_sphere_2/issue_8200.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Triangulation_on_sphere_2/test/Triangulation_on_sphere_2/issue_8200.cpp b/Triangulation_on_sphere_2/test/Triangulation_on_sphere_2/issue_8200.cpp index 2f1989622a4..e958e6c54d8 100644 --- a/Triangulation_on_sphere_2/test/Triangulation_on_sphere_2/issue_8200.cpp +++ b/Triangulation_on_sphere_2/test/Triangulation_on_sphere_2/issue_8200.cpp @@ -51,6 +51,12 @@ int main(int, char**) in >> dtos2; in.close(); + std::cout << "After write/read triangulation has dimension: " << dtos2.dimension() << " and\n"; + std::cout << dtos2.number_of_vertices() << " vertices" << std::endl; + std::cout << dtos2.number_of_edges() << " edges" << std::endl; + std::cout << dtos2.number_of_solid_faces() << " solid faces" << std::endl; + std::cout << dtos2.number_of_ghost_faces() << " ghost faces" << std::endl; + CGAL::IO::write_OFF("dtos2.off", dtos2, CGAL::parameters::stream_precision(17));