use exact integer

This commit is contained in:
Sébastien Loriot 2024-01-03 18:21:57 +01:00
parent 3a8ced2ec9
commit 6decd7abfc
1 changed files with 2 additions and 7 deletions

View File

@ -1,14 +1,9 @@
#include <CGAL/Homogeneous.h> #include <CGAL/Homogeneous.h>
#include <CGAL/Nef_polyhedron_S2.h> #include <CGAL/Nef_polyhedron_S2.h>
#include <CGAL/test_macros.h> #include <CGAL/test_macros.h>
#include <CGAL/Exact_integer.h>
#ifdef CGAL_USE_LEDA typedef CGAL::Exact_integer NT;
#include <CGAL/leda_integer.h>
typedef leda_integer NT;
#else
#include <CGAL/Gmpz.h>
typedef CGAL::Gmpz NT;
#endif
typedef CGAL::Homogeneous<NT> Kernel; typedef CGAL::Homogeneous<NT> Kernel;
typedef CGAL::Nef_polyhedron_S2<Kernel> Nef_polyhedron; typedef CGAL::Nef_polyhedron_S2<Kernel> Nef_polyhedron;