In 5D we enter Orientation_5, but not in 4D. why?

This commit is contained in:
Andreas Fabri 2025-07-02 17:08:49 +01:00
parent b38b13e2ef
commit 15760cfc78
2 changed files with 4 additions and 2 deletions

View File

@ -342,7 +342,7 @@ struct Cartesian_static_filters<Dimension_tag<3>, R_, Derived_> : public R_ {
};
};
#ifndef CGAL_NO_STATIC_FILTER_5
#ifndef CGAL_NO_STATIC_FILTER_456
template <class R_, class Derived_>
struct Cartesian_static_filters<Dimension_tag<4>, R_, Derived_> : public R_ {

View File

@ -1,3 +1,5 @@
// Switch off the static filters for 4, 5, and 6 points.
// #define CGAL_NO_STATIC_FILTER_456
#include <CGAL/Epick_d.h>
#include <CGAL/Triangulation.h>
@ -23,7 +25,7 @@ int main()
const int D = 5; // we work in Euclidean 5-space
std::vector<Triangulation::Point> points;
std::ifstream in("points.txt");
std::ifstream in("points_5.txt");
Triangulation::Point p;
int d;
in >> d;