Taking larger increments

This commit is contained in:
Nico Kruithof 2013-03-29 15:00:09 +01:00
parent 80c7a3cb7a
commit 34a3cd98ba
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ void test_performance(const std::string &name, int maximum = 1e5) {
CGAL::Random_points_in_square_2<Point, Creator> in_square(0.5, rnd);
for (int n = 1000; n<=maximum; n+=1000) {
for (int n = 0; n<=maximum; n+=5000) {
CGAL::Timer timer;
std::vector<Point> pts;