From 8293f80be779029eeee6bf5eb672e6e9733b0cee Mon Sep 17 00:00:00 2001 From: Marco Feder Date: Fri, 30 Sep 2022 10:26:45 +0200 Subject: [PATCH] Update required cgal version for intersection routines --- source/cgal/intersections.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/cgal/intersections.cc b/source/cgal/intersections.cc index 0ad7918301..2632d005cc 100644 --- a/source/cgal/intersections.cc +++ b/source/cgal/intersections.cc @@ -269,7 +269,7 @@ namespace CGALWrappers compute_intersection(const std::array, 2> &first_simplex, const std::array, 4> &second_simplex) { -# if DEAL_II_CGAL_VERSION_GTE(5, 1, 5) +# if DEAL_II_CGAL_VERSION_GTE(5, 5, 0) std::array pts0; std::array pts1; std::transform( @@ -311,7 +311,7 @@ namespace CGALWrappers compute_intersection(const std::array, 3> &first_simplex, const std::array, 4> &second_simplex) { -# if DEAL_II_CGAL_VERSION_GTE(5, 1, 5) +# if DEAL_II_CGAL_VERSION_GTE(5, 5, 0) std::array pts0; std::array pts1; std::transform( @@ -464,7 +464,7 @@ namespace CGALWrappers const std::array, 2> &vertices1, const double tol) { -# if DEAL_II_CGAL_VERSION_GTE(5, 1, 5) +# if DEAL_II_CGAL_VERSION_GTE(5, 5, 0) std::array pts; std::transform( vertices0.begin(), vertices0.end(), pts.begin(), [&](const Point<3> &p) { @@ -521,7 +521,7 @@ namespace CGALWrappers const std::array, 4> &vertices1, const double tol) { -# if DEAL_II_CGAL_VERSION_GTE(5, 1, 5) +# if DEAL_II_CGAL_VERSION_GTE(5, 5, 0) std::array pts_hex; std::array pts_quad; std::transform( -- 2.39.5