Update example

This commit is contained in:
Simon Giraudot 2016-07-18 10:00:29 +02:00
parent 261304126c
commit 26995a29fa
1 changed files with 5 additions and 1 deletions

View File

@ -22,7 +22,11 @@ int main ()
CGAL::cpp11::copy_n(point_generator, 100, std::back_inserter(points));
Otr otr(points);
otr.run(100); // 100 steps
if (otr.run(100)) //100 steps
std::cerr << "All done." << std::endl;
else
std::cerr << "Premature ending." << std::endl;
return 0;
}