lower number of sample points to 20

This commit is contained in:
Sven Oesau 2024-03-01 10:19:31 +01:00
parent fd20d98002
commit 546888c6d1
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ int main()
CGAL::Random r;
Point_vector points_dd;
for (std::size_t i = 0; i < 500; ++ i)
for (std::size_t i = 0; i < 20; ++ i)
{
std::array<double, dimension> init{};
for (double& v : init)