Skip to content

Commit

Permalink
Re-enable all cone parameter tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Aug 7, 2020
1 parent 0d2911b commit e4f2a40
Showing 1 changed file with 8 additions and 8 deletions.
Expand Up @@ -116,14 +116,14 @@ int main() {
std::cout << "test_cone_parameters<CGAL::Simple_cartesian<float>> ";
if (!test_cone_parameters<CGAL::Simple_cartesian<float> >())
success = false;
//
// std::cout << "test_cone_parameters<CGAL::Simple_cartesian<double>> ";
// if (!test_cone_parameters<CGAL::Simple_cartesian<double> >())
// success = false;
//
// std::cout << "test_cone_parameters<CGAL::Exact_predicates_inexact_constructions_kernel> ";
// if (!test_cone_parameters<CGAL::Exact_predicates_inexact_constructions_kernel>())
// success = false;

std::cout << "test_cone_parameters<CGAL::Simple_cartesian<double>> ";
if (!test_cone_parameters<CGAL::Simple_cartesian<double> >())
success = false;

std::cout << "test_cone_parameters<CGAL::Exact_predicates_inexact_constructions_kernel> ";
if (!test_cone_parameters<CGAL::Exact_predicates_inexact_constructions_kernel>())
success = false;

return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
}

0 comments on commit e4f2a40

Please sign in to comment.