Merge pull request #8539 from afabri/Polygon-exact_area_bis-GF

Add specialization of Evaluate<> for Lazy_exact_nt
This commit is contained in:
Sébastien Loriot 2024-10-18 17:59:24 +02:00
commit 32119c2a1a
2 changed files with 38 additions and 6 deletions

View File

@ -111,14 +111,24 @@ template<class T>inline std::enable_if_t<std::is_empty<T>::value, T> approx(T){r
template<class T>inline std::enable_if_t<std::is_empty<T>::value, int> depth(T){return -1;}
namespace internal{
template <typename AT, typename ET, typename E2A>
struct Evaluate<Lazy<AT,ET,E2A>>
{
void operator()(const Lazy<AT,ET,E2A>& l)
template <typename AT, typename ET, typename E2A>
struct Evaluate<Lazy<AT, ET, E2A>>
{
exact(l);
}
void operator()(const Lazy<AT, ET, E2A>& l)
{
exact(l);
}
};
template <typename ET>
struct Evaluate<Lazy_exact_nt<ET>>
{
void operator()(const Lazy_exact_nt<ET>& l)
{
exact(l);
}
};
} // internal namespace
// For an iterator, exact/approx applies to the objects it points to

View File

@ -0,0 +1,22 @@
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <CGAL/Polygon_2.h>
#include <CGAL/Polygon_2_algorithms.h>
#include <iostream>
using Kernel = CGAL::Exact_predicates_exact_constructions_kernel;
using Point_2 = Kernel::Point_2;
using Polygon_2 = CGAL::Polygon_2<Kernel>;
int main()
{
Polygon_2 polygon;
for (int i = 0; i < 200000; ++i) {
polygon.push_back(Point_2(i* 1.04663, 0));
}
polygon.push_back(Point_2( 3.1415, 3.1415));
auto ar = CGAL::polygon_area_2(polygon.vertices_begin(), polygon.vertices_end(), Kernel());
std::cout << "done" << std::endl;
return 0;
}