// file: examples/Fixed_precision_nt/delaunay.C #include #include #include #include #include #include #include #include typedef CGAL::Fixed_precision_nt coord_type; static bool Fixed_precision_nt_init_result = CGAL::Fixed_precision_nt::init(2000.0); typedef CGAL::Cartesian Repclass; typedef Repclass::Point_2 Point_; typedef CGAL::Delaunay_triangulation_2 Delaunay_; int main(int argc, char* argv[]) { CGAL::force_ieee_double_precision(); CGAL::Timer t; Delaunay_ D; CGAL::Random_points_in_square_2 > Input ( 1.0 ); int N; if (argc==2) CGAL_CLIB_STD::sscanf(argv[1], "%d", &N); else { N=100; std::cerr<<"usage : "<