mirror of https://github.com/CGAL/cgal
edges are not sorted and do not appear twice: do not skip them using indices
This commit is contained in:
parent
07359c1eb0
commit
f68a2a4dff
|
|
@ -543,7 +543,7 @@ public:
|
|||
CDT_Vertex_handle vh=id_to_CDT_vh.find(id)->second;
|
||||
BOOST_FOREACH(Node_id id_n,neighbors)
|
||||
{
|
||||
if (id_n < id) continue; //no need to do it twice
|
||||
// if (id_n < id) continue; //no need to do it twice
|
||||
typename std::map<Node_id,CDT_Vertex_handle>
|
||||
::iterator it_vh=id_to_CDT_vh.find(id_n);
|
||||
// this condition ensures to consider only graph edges that are in
|
||||
|
|
|
|||
Loading…
Reference in New Issue