Files
cgal/Random_numbers/test/Random_numbers/test_Random-no-CGAL_TEST_SUITE.cpp
T
2019-01-07 10:05:33 +01:00

15 lines
214 B
C++

#ifdef CGAL_TEST_SUITE
# undef CGAL_TEST_SUITE
#endif
#include <CGAL/Random.h>
int main()
{
int u = CGAL::get_default_random().get_int( 0, 1000);
if(u >= 0 && u < 1000)
return 0;
else
return 1;
}