mirror of https://github.com/CGAL/cgal
EPECK_with_sqrt is actually disabled
This commit is contained in:
parent
ed3539f5fe
commit
1b0447eab7
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue