Make it a little bit more verbose for debugging

This commit is contained in:
Andreas Fabri 2011-01-11 15:30:12 +00:00
parent 2fee1527c2
commit 6b523e1bd3
1 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,7 @@ void process ()
// call test function
CGAL::test_Polytope_distance_d( p_points.begin(), p_points.end(),
q_points.begin(), q_points.end(),
Traits(), 1);
Traits(), 2);
}
}
@ -93,6 +93,7 @@ void process ()
// ----
int main()
{
std::cerr << "Testing with " << typeid(CTraits1()).name() << std::endl;
process<CK1, CTraits1>();
process<HK1, HTraits1>();
}