https://github.com/CGAL/cgal
Raw File
Tip revision: 6200edcfafc20435e1a1c88d0d86a53ebd92fc36 authored by Luis PeƱaranda on 07 March 2018, 17:37:51 UTC
Forbid MPFR 3.1.[3456] when using RS.
Tip revision: 6200edc
TODO
-------------------------------------------------------
 RANDOM DESIGN IDEAS extracted from Convex_hull.h
-------------------------------------------------------
- Use a policy tag to choose for incremental with inserts only or
  incremental with  removals and inserts.
  In the first case: use Triangulation for storage.
  In the second case: use Delaunay !
    In this second case, we must keeps the points that are inserted in the hull,
    as they may become part of the boundary later on, when some points are removed.
- Constructor with range argument uses quickhull.
back to top