Use Exact_rational

This commit is contained in:
Andreas Fabri 2020-02-13 10:58:10 +00:00
parent 72d4a25263
commit a4acfb0c56
1 changed files with 2 additions and 3 deletions

View File

@ -1,12 +1,11 @@
#include <iostream>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <CGAL/Exact_rational.h>
#include <CGAL/Simple_cartesian.h>
#include <CGAL/squared_distance_2.h>
typedef CGAL::Simple_cartesian<double> SC;
typedef CGAL::Simple_cartesian<CGAL::Gmpq> EC;
typedef CGAL::Simple_cartesian<CGAL::Exact_rational> EC;
template <typename Kernel>
int fct() {