improve verbosity in the end

This commit is contained in:
Jane Tournois 2020-09-03 15:12:03 +02:00
parent f85ae5783a
commit 9d91c3f304
1 changed files with 12 additions and 2 deletions

View File

@ -368,8 +368,18 @@ public:
CGAL::Tetrahedral_remeshing::debug::dump_c3t3(m_c3t3, "99-postprocess");
#endif
#ifdef CGAL_TETRAHEDRAL_REMESHING_VERBOSE
std::cout << "(peeling removed " << nb_slivers_peel << " slivers)" << std::endl;
std::cout << "done." << std::endl;
mindh = 180.;
for (Cell_handle cit : tr().finite_cell_handles())
{
if (m_c3t3.is_in_complex(cit))
{
const double dh = min_dihedral_angle(tr(), cit);
mindh = (std::min)(dh, mindh);
}
}
std::cout << "Peeling done (removed " << nb_slivers_peel << " slivers, "
<< "min dihedral angle = " << mindh << ")." << std::endl;
#endif
return nb_slivers_peel;
}