mirror of https://github.com/CGAL/cgal
removed wasted std::cout
This commit is contained in:
parent
f5b980c13e
commit
0bd623bf5d
|
|
@ -91,9 +91,7 @@ class Ghost_tester
|
||||||
bool operator()(const All_edges_iterator & eit) const {
|
bool operator()(const All_edges_iterator & eit) const {
|
||||||
int dim = t->dimension();
|
int dim = t->dimension();
|
||||||
Face_handle f = eit->first;
|
Face_handle f = eit->first;
|
||||||
t->show_all();
|
bool edge1 = f->is_ghost();
|
||||||
t->show_face(f);
|
|
||||||
bool edge1 = f->is_ghost();
|
|
||||||
Face_handle f2 = f->neighbor(eit->second);
|
Face_handle f2 = f->neighbor(eit->second);
|
||||||
bool edge2b = f2->is_ghost();
|
bool edge2b = f2->is_ghost();
|
||||||
bool edge2 = (f->neighbor(eit->second))->is_ghost();
|
bool edge2 = (f->neighbor(eit->second))->is_ghost();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue