CGAL 5.0 - STL Extensions for CGAL
|
#include <CGAL/Location_policy.h>
Location_policy
is a policy class which can be used to specify a trade-off between memory usage and time complexity for the point location strategy used in a data-structure.
For example, passing Location_policy<Compact>
as parameter to Delaunay_triangulation_3
selects a slower point location which saves memory.
Parameters
Tag
can only be either Fast
or Compact
currently.
Compact
Fast
Fast_location
Compact_location