mirror of https://github.com/CGAL/cgal
Correct error in include name
This commit is contained in:
parent
59e87e8468
commit
6dedfe8858
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue