Fixed point typedef in Tr_3/benchmarks

This commit is contained in:
Mael Rouxel-Labbé 2017-04-27 12:02:39 +02:00
parent 1e30446d7e
commit 42fa20881c
2 changed files with 7 additions and 7 deletions

View File

@ -13,9 +13,9 @@
#include <iostream>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Delaunay_triangulation_3<K> DT;
typedef K::Point_3 Point_3;
typedef CGAL::Timer Timer;
typedef CGAL::Delaunay_triangulation_3<K> DT;
typedef DT::Point Point_3;
typedef CGAL::Timer Timer;
int main()
{

View File

@ -6,10 +6,10 @@
#include <iostream>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Delaunay_triangulation_3<K> DT;
typedef K::Point_3 Point_3;
typedef CGAL::Timer Timer;
typedef CGAL::Creator_uniform_3<double,Point_3> Creator;
typedef CGAL::Delaunay_triangulation_3<K> DT;
typedef DT::Point Point_3;
typedef CGAL::Timer Timer;
typedef CGAL::Creator_uniform_3<double,Point_3> Creator;
int main(int,char** argv)
{