This commit is contained in:
Sébastien Loriot 2019-01-07 08:29:47 +01:00
parent 61169b394e
commit 6542aee648
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
int main()
{
int u = CGAL::get_default_random().get_int( 0, 1000);
if(u >= 0 || u <= 1000)
if(u >= 0 && u < 1000)
return 0;
else
return 1;