mirror of https://github.com/CGAL/cgal
Add Epick_without_intervals
That `Epick` without the dynamic filters: only the static filters are applied before the exact computation.
This commit is contained in:
parent
90782d4b7f
commit
621542afbd
|
|
@ -14,7 +14,7 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
|
||||||
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
typedef CGAL::Epick_without_intervals K;
|
||||||
typedef CGAL::Polyhedron_3<K> Polyhedron_3;
|
typedef CGAL::Polyhedron_3<K> Polyhedron_3;
|
||||||
typedef K::Point_3 Point_3;
|
typedef K::Point_3 Point_3;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -81,4 +81,6 @@ int main()
|
||||||
test<Epec,CGAL::Polyhedron_3<Epec> >();
|
test<Epec,CGAL::Polyhedron_3<Epec> >();
|
||||||
test<Epic,CGAL::Surface_mesh<Epic::Point_3> >();
|
test<Epic,CGAL::Surface_mesh<Epic::Point_3> >();
|
||||||
test<Epec,CGAL::Surface_mesh<Epec::Point_3> >();
|
test<Epec,CGAL::Surface_mesh<Epec::Point_3> >();
|
||||||
|
test<CGAL::Epick_without_intervals,
|
||||||
|
CGAL::Surface_mesh<CGAL::Epick_without_intervals::Point_3> >();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,12 @@ class Epick
|
||||||
#endif
|
#endif
|
||||||
{};
|
{};
|
||||||
|
|
||||||
|
class Epick_without_intervals
|
||||||
|
: public Static_filters_base<
|
||||||
|
Type_equality_wrapper< Simple_cartesian<double>::Base<Epick_without_intervals>::Type,
|
||||||
|
Epick_without_intervals > >
|
||||||
|
{};
|
||||||
|
|
||||||
typedef Epick Exact_predicates_inexact_constructions_kernel;
|
typedef Epick Exact_predicates_inexact_constructions_kernel;
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue