Mael's comment

This commit is contained in:
Andreas Fabri 2018-01-16 12:10:35 +00:00
parent cfd566acef
commit 9546d96ae0
2 changed files with 3 additions and 3 deletions

View File

@ -370,7 +370,7 @@ public:
edge_to_delete = std::make_pair((*it)->vertex(k),(*it)->vertex(j)); edge_to_delete = std::make_pair((*it)->vertex(k),(*it)->vertex(j));
} }
Vertex_handle v_no = edge_to_delete.first; Vertex_handle v_no = edge_to_delete.first;
std::list<Vertex_handle>& vl = too_long_edges[v_no]; std::list<Vertex_handle>& vl = too_long_edges[v_no];
sit = std::find(vl.begin(), vl.end(), edge_to_delete.second); sit = std::find(vl.begin(), vl.end(), edge_to_delete.second);
if(sit != vl.end()) { if(sit != vl.end()) {
vl.erase(sit); vl.erase(sit);
@ -407,7 +407,7 @@ public:
p1 = construct_point((*it)->vertex(j)->point(), get_offset(*it, j)); p1 = construct_point((*it)->vertex(j)->point(), get_offset(*it, j));
p2 = construct_point((*it)->vertex(k)->point(), get_offset(*it, k)); p2 = construct_point((*it)->vertex(k)->point(), get_offset(*it, k));
std::list<Vertex_handle>& vl = too_long_edges[(*it)->vertex(j)]; std::list<Vertex_handle>& vl = too_long_edges[(*it)->vertex(j)];
if((squared_distance(p1,p2) > edge_length_threshold) if((squared_distance(p1,p2) > edge_length_threshold)
&& (find(vl.begin(), vl.end(), edge_to_add.second) && (find(vl.begin(), vl.end(), edge_to_add.second)

View File

@ -185,7 +185,7 @@ private:
Virtual_vertex_map; Virtual_vertex_map;
typedef typename Virtual_vertex_map::const_iterator typedef typename Virtual_vertex_map::const_iterator
Virtual_vertex_map_it; Virtual_vertex_map_it;
typedef std::map<Vertex_handle, std::vector<Vertex_handle > > typedef boost::unordered_map<Vertex_handle, std::vector<Vertex_handle > >
Virtual_vertex_reverse_map; Virtual_vertex_reverse_map;
typedef typename Virtual_vertex_reverse_map::const_iterator typedef typename Virtual_vertex_reverse_map::const_iterator
Virtual_vertex_reverse_map_it; Virtual_vertex_reverse_map_it;