mirror of https://github.com/CGAL/cgal
Reserve hashtable size in K3_tree/SNC_k3_tree_traits
This commit is contained in:
parent
3004350b7a
commit
263c168d9d
|
|
@ -606,6 +606,7 @@ Node_handle build_kdtree(Vertex_list& V, Halfedge_list& E, Halffacet_list& F,
|
||||||
#else
|
#else
|
||||||
Side_of_plane sop(point_on_plane, coord);
|
Side_of_plane sop(point_on_plane, coord);
|
||||||
#endif
|
#endif
|
||||||
|
sop.reserve(V.size());
|
||||||
|
|
||||||
Vertex_list V1,V2;
|
Vertex_list V1,V2;
|
||||||
classify_objects(V, sop, V1, V2);
|
classify_objects(V, sop, V1, V2);
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ public:
|
||||||
#else
|
#else
|
||||||
Side_of_plane(const Point_3& p, int c) : OnSideMap(unknown_side), coord(c), pop(p) {}
|
Side_of_plane(const Point_3& p, int c) : OnSideMap(unknown_side), coord(c), pop(p) {}
|
||||||
#endif
|
#endif
|
||||||
|
void reserve(std::size_t n) { OnSideMap.reserve(n); }
|
||||||
Oriented_side operator()(Vertex_handle v);
|
Oriented_side operator()(Vertex_handle v);
|
||||||
Oriented_side operator()(Halfedge_handle e);
|
Oriented_side operator()(Halfedge_handle e);
|
||||||
Oriented_side operator()(Halffacet_handle f);
|
Oriented_side operator()(Halffacet_handle f);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue