Comment an assertion that requires an exact kernel

This commit is contained in:
Mael Rouxel-Labbé 2021-06-23 17:37:47 +02:00
parent c2d1adfb69
commit 4a301448fe
1 changed files with 4 additions and 4 deletions

View File

@ -66,10 +66,10 @@ public:
{
// the plane contains the center and it is not degenerate
CGAL_kernel_assertion(!R().is_degenerate_3_object()(p));
CGAL_kernel_assertion((p.a() * center.x() +
p.b() * center.y() +
p.c() * center.z() +
p.d()) == 0);
// CGAL_kernel_assertion((p.a() * center.x() +
// p.b() * center.y() +
// p.c() * center.z() +
// p.d()) == 0);
CGAL_kernel_assertion(squared_r >= FT(0));
base = Rep(Sphere_3(center,squared_r), p);
}