This commit is contained in:
Remy Thomasse 2014-06-23 15:33:56 +02:00
parent 5a876394d9
commit be57b3f2e6
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ The generated polygon will have an average number of vertices \f$ n^\frac{1}{3}(
- `Generator` has to be a Boost random generator, such as `boost::random::mt19937`.
- `fast` is a Boolean value, `true` for a time-efficienct behavior and `false` for a memory-efficient behavior.
- `fast` is a Boolean value, `true` for a time-efficient behavior and `false` for a memory-efficient behavior.
- `Traits` is a model of the concept `RandomConvexHullTraits_2`.

View File

@ -10,7 +10,7 @@ typedef Exact_predicates_inexact_constructions_kernel K;
typedef K::Point_2 Point;
typedef K::FT FT;
const FT RADIUS=1.0;
const double RADIUS=1.0;
int main( )
{
int N=10000;