EPECK_with_sqrt is actually disabled

This commit is contained in:
Sébastien Loriot 2024-01-03 18:36:34 +01:00
parent ed3539f5fe
commit 1b0447eab7
1 changed files with 4 additions and 4 deletions

View File

@ -15,10 +15,10 @@
#include <fstream>
typedef CGAL::Exact_predicates_inexact_constructions_kernel EPICK;
typedef CGAL::Exact_predicates_exact_constructions_kernel_with_sqrt EPECK;
//typedef CGAL::Exact_predicates_exact_constructions_kernel_with_sqrt EPECK;
typedef CGAL::Surface_mesh<EPICK::Point_3> EPICK_SM;
typedef CGAL::Surface_mesh<EPECK::Point_3> EPECK_SM;
//typedef CGAL::Surface_mesh<EPECK::Point_3> EPECK_SM;
namespace PMP = CGAL::Polygon_mesh_processing;
@ -100,8 +100,8 @@ void test(const Mesh& mesh,
{
if (PMP::is_degenerate_triangle_face(f, mesh))
{
if (std::is_same<K, EPECK>())
assert(get(fnormals, f) == CGAL::NULL_VECTOR);
// if (std::is_same<K, EPECK>())
// assert(get(fnormals, f) == CGAL::NULL_VECTOR);
}
else
assert(get(fnormals, f) != CGAL::NULL_VECTOR);