- Test Lazy_exact_nt more throughly using Delaunay_3.

This commit is contained in:
Sylvain Pion 2001-07-17 20:03:23 +00:00
parent c4aaabd654
commit 2227d8df48
2 changed files with 23 additions and 0 deletions

View File

@ -1,5 +1,8 @@
Changes done to the Interval Arithmetic package.
Version 4.109 on 17 July 2001
- Test Lazy_exact_nt more throughly using Delaunay_3.
Version 4.108 on 17 July 2001
- Remove debug messages from Lazy_exact_nt.

View File

@ -2,9 +2,11 @@
#include <CGAL/Cartesian.h>
#include <iostream>
#include <CGAL/Random.h>
#include <CGAL/Lazy_exact_nt.h>
#include <CGAL/MP_Float.h>
#include <CGAL/Quotient.h>
#include <CGAL/Delaunay_triangulation_3.h>
#ifdef CGAL_USE_LEDA
# include <CGAL/leda_real.h>
@ -57,6 +59,23 @@ my_min(const NT& n, const NT& m)
} // namespace CGAL
typedef CGAL::Lazy_exact_nt<CGAL::Quotient<CGAL::MP_Float> > my_NT;
typedef CGAL::Delaunay_triangulation_3<CGAL::Cartesian<my_NT> > Delaunay;
int my_rand()
{
return int(CGAL::default_random.get_double()*(1<<31));
}
void delaunay()
{
Delaunay D;
for (int i=0; i<100; i++)
D.insert(Delaunay::Point(my_NT(my_rand()),
my_NT(my_rand()),
my_NT(my_rand())));
}
int main ()
{
std::cout.precision(20);
@ -93,6 +112,7 @@ int main ()
std::cout << "sizeof(Lazy_exact_nt) = " << sizeof(CGAL::Lazy_exact_nt<int>)
<< std::endl;
predicates();
delaunay();
return 0;
}