Correct error in include name

This commit is contained in:
Léo Valque 2025-02-28 16:26:53 +01:00
parent 59e87e8468
commit 6dedfe8858
2 changed files with 5 additions and 4 deletions

View File

@ -164,10 +164,11 @@ int main(int argc, char** argv)
}
average_length/=(3*input_triangles.size());
// Equivalent to EPECK since there are only predicates
// Test<CGAL::Exact_predicates_inexact_constructions_kernel>().run(filename, 100*max/input_points.size());
std::cout << "EPICK" << std::endl;
Test<CGAL::Exact_predicates_inexact_constructions_kernel>().run(filename, average_length*average_length/256);
Test<CGAL::Exact_predicates_inexact_constructions_kernel>().run(filename, min_sq_length*4);
// std::cout << "EPICK" << std::endl;
// Test<CGAL::Exact_predicates_inexact_constructions_kernel>().run(filename, average_length*average_length/256);
// Test<CGAL::Exact_predicates_inexact_constructions_kernel>().run(filename, min_sq_length*4);
std::cout << "EPECK" << std::endl;
Test<CGAL::Exact_predicates_exact_constructions_kernel>().run(filename, average_length*average_length/256);

View File

@ -20,7 +20,7 @@
#include <CGAL/number_utils.h>
#include <memory>
#include <CGAL/boost/graph/internal/Has_member_id.h>
#include <CGAL/Distance_3>
#include <CGAL/squared_distance_3.h>
#include <CGAL/Dynamic_property_map.h>
namespace CGAL {