reduced runtime of test (reduced maximum problem size)

This commit is contained in:
Andreas Meyer 2007-03-02 11:15:32 +00:00
parent 3675c51bc3
commit 7839611ea9
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ void operator()() {
std::cout << "-------------------------" << std::endl;
std::cout << "DIM = " << DIM << std::endl;
std::cout << "-------------------------" << std::endl;
for( unsigned int n = 4; n < 100000; n = (int)(n * 6)) {
for( unsigned int n = 4; n < 20000; n *= 6) {
std::cout << "bipartite case: " << std::endl;
test_n( n, CGAL::Box_intersection_d::BIPARTITE );
std::cout << "complete case: " << std::endl;