Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] A kernel question

Subject: CGAL users discussion list

List archive

[cgal-discuss] A kernel question


Chronological Thread 
  • From: Bernhard Kornberger <>
  • To:
  • Subject: [cgal-discuss] A kernel question
  • Date: Mon, 16 Nov 2009 15:46:49 +0100


I'd like to get sure that my interpretation of this kernel
is correct:

typedef Filtered_kernel< Simple_cartesian<double> >
Exact_predicates_inexact_constructions_kernel;

Can you confirm that:

a) Using this kernel, constructions are done only with
double precision floating point arithmetic
b) Therefore, even exact predicates will possibly fail,
when they use constructed objects like, e.g., in the code
below:

Line l1;
Line l2;
Point p=intersection(l1,l2);
assert(l1.has_on(p));


Thank you,

Best
Bernhard



Archive powered by MHonArc 2.6.16.

Top of Page