mirror of https://github.com/CGAL/cgal
Fix verbosity
This commit is contained in:
parent
74b7e92ef5
commit
ac752c05a7
|
|
@ -606,11 +606,13 @@ public:
|
|||
ok = copy.make_collapsible(copy_edge, copy_hull.begin(),
|
||||
copy_hull.end(), m_verbose);
|
||||
if (!ok) {
|
||||
// std::cerr << "simulation: failed (make collapsible)" << std::endl;
|
||||
if (m_verbose > 1)
|
||||
std::cerr << "simulation: failed (make collapsible)" << std::endl;
|
||||
return false;
|
||||
}
|
||||
ok = copy.check_validity_test(copy_edge);
|
||||
if (!ok) {
|
||||
if (m_verbose > 1)
|
||||
std::cerr << "simulation: failed (validity test)" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
|
@ -618,6 +620,7 @@ public:
|
|||
|
||||
ok = copy.check_kernel_test(copy_edge);
|
||||
if (!ok) {
|
||||
if (m_verbose > 1)
|
||||
std::cerr << "simulation: failed (kernel test)" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
|
@ -626,6 +629,7 @@ public:
|
|||
|
||||
ok = copy.check_validity_test(copy_edge);
|
||||
if (!ok) {
|
||||
if (m_verbose > 1)
|
||||
std::cerr << "simulation: failed (validity test)" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue