Skip to content

Instantly share code, notes, and snippets.

@stla
Last active June 1, 2022 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stla/9e49a91929aeef7d34a001ae666ec021 to your computer and use it in GitHub Desktop.
Save stla/9e49a91929aeef7d34a001ae666ec021 to your computer and use it in GitHub Desktop.
hyperbolic delaunay
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <CGAL/Triangulation_data_structure_2.h>
#include <CGAL/Hyperbolic_Delaunay_triangulation_2.h>
#include <CGAL/Hyperbolic_Delaunay_triangulation_traits_2.h>
#include <CGAL/Triangulation_vertex_base_with_id_2.h>
#include <CGAL/number_utils.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Exact_predicates_exact_constructions_kernel EK;
typedef CGAL::Hyperbolic_Delaunay_triangulation_traits_2<K> HDtt;
typedef CGAL::Hyperbolic_Delaunay_triangulation_traits_2<EK> EHDtt;
typedef HDtt::Point_2 HPoint;
typedef EHDtt::Point_2 EHPoint;
typedef CGAL::Triangulation_data_structure_2<
CGAL::Triangulation_vertex_base_with_id_2<HDtt>,
CGAL::Hyperbolic_triangulation_face_base_2<HDtt>>
HTds;
typedef CGAL::Triangulation_data_structure_2<
CGAL::Triangulation_vertex_base_with_id_2<EHDtt>,
CGAL::Hyperbolic_triangulation_face_base_2<EHDtt>>
EHTds;
typedef CGAL::Hyperbolic_Delaunay_triangulation_2<HDtt, HTds> HDt;
typedef CGAL::Hyperbolic_Delaunay_triangulation_2<EHDtt, EHTds> EHDt;
template <typename HDtT, typename HPointT>
Rcpp::List hdelaunay_cpp(const DMatrix points) {
std::vector<HPointT> hpts;
const unsigned npoints = points.ncol();
hpts.reserve(npoints);
for(unsigned i = 0; i != npoints; i++) {
const DVector pt = points(Rcpp::_, i);
hpts.emplace_back(HPointT(pt(0), pt(1)));
}
HDtT hdt;
hdt.insert(hpts.begin(), hpts.end());
DMatrix Vertices(2, hdt.number_of_vertices());
{
int index = 0;
for(typename HDtT::All_vertices_iterator vd = hdt.all_vertices_begin();
vd != hdt.all_vertices_end(); ++vd) {
vd->id() = index;
HPointT pt = vd->point();
Vertices(0, index) = CGAL::to_double(pt.x());
Vertices(1, index) = CGAL::to_double(pt.y());
index++;
}
}
const size_t nedges = hdt.number_of_hyperbolic_edges();
Rcpp::IntegerMatrix Edges(2, nedges);
{
size_t i = 0;
for(typename HDtT::All_edges_iterator ed = hdt.all_edges_begin();
ed != hdt.all_edges_end(); ++ed) {
Rcpp::IntegerVector edge_i(2);
const typename HDtT::Vertex_handle sVertex =
ed->first->vertex(HDtT::cw(ed->second));
edge_i(0) = sVertex->id();
const typename HDtT::Vertex_handle tVertex =
ed->first->vertex(HDtT::ccw(ed->second));
edge_i(1) = tVertex->id();
Edges(Rcpp::_, i) = edge_i + 1;
i++;
}
}
const size_t nfaces = hdt.number_of_hyperbolic_faces();
Rcpp::IntegerMatrix Faces(3, nfaces);
{
size_t i = 0;
for(typename HDtT::All_faces_iterator fd = hdt.all_faces_begin();
fd != hdt.all_faces_end(); ++fd) {
Rcpp::IntegerVector face_i(3);
face_i(0) = fd->vertex(0)->id();
face_i(1) = fd->vertex(1)->id();
face_i(2) = fd->vertex(2)->id();
Faces(Rcpp::_, i) = face_i + 1;
i++;
}
}
Rcpp::List out = Rcpp::List::create(Rcpp::Named("vertices") = Vertices,
Rcpp::Named("edges") = Edges,
Rcpp::Named("faces") = Faces);
return out;
}
// [[Rcpp::export]]
Rcpp::List hdelaunay_K(const DMatrix points) {
return hdelaunay_cpp<HDt, HPoint>(points, isolations);
}
template <typename HDtT, typename HPointT>
Rcpp::List hdelaunay_cpp(const DMatrix points) {
std::vector<HPointT> hpts;
const unsigned npoints = points.ncol();
HDtT hdt;
typename HDtT::Vertex_handle vh;
for(unsigned i = 0; i < npoints; i++) {
const DVector pt = points(Rcpp::_, i);
vh = hdt.insert(HPointT(pt(0), pt(1)));
vh->id() = i;
}
DMatrix Vertices(2, hdt.number_of_vertices());
{
int index = 0;
for(typename HDtT::All_vertices_iterator vd = hdt.all_vertices_begin();
vd != hdt.all_vertices_end(); ++vd) {
HPointT pt = vd->point();
Vertices(0, index) = CGAL::to_double(pt.x());
Vertices(1, index) = CGAL::to_double(pt.y());
index++;
}
}
const size_t nedges = hdt.number_of_hyperbolic_edges();
Rcpp::IntegerMatrix Edges(2, nedges);
{
size_t i = 0;
for(typename HDtT::All_edges_iterator ed = hdt.all_edges_begin();
ed != hdt.all_edges_end(); ++ed) {
Rcpp::IntegerVector edge_i(2);
const typename HDtT::Vertex_handle sVertex =
ed->first->vertex(HDtT::cw(ed->second));
edge_i(0) = sVertex->id() + 1;
const typename HDtT::Vertex_handle tVertex =
ed->first->vertex(HDtT::ccw(ed->second));
edge_i(1) = tVertex->id() + 1;
Edges(Rcpp::_, i) = edge_i;
i++;
}
}
const size_t nfaces = hdt.number_of_hyperbolic_faces();
Rcpp::IntegerMatrix Faces(3, nfaces);
{
size_t i = 0;
for(typename HDtT::All_faces_iterator fd = hdt.all_faces_begin();
fd != hdt.all_faces_end(); ++fd) {
Rcpp::IntegerVector face_i(3);
face_i(0) = fd->vertex(0)->id() + 1;
face_i(1) = fd->vertex(1)->id() + 1;
face_i(2) = fd->vertex(2)->id() + 1;
Faces(Rcpp::_, i) = face_i;
i++;
}
}
Rcpp::List out = Rcpp::List::create(Rcpp::Named("vertices") = Vertices,
Rcpp::Named("edges") = Edges,
Rcpp::Named("faces") = Faces);
return out;
}
// [[Rcpp::export]]
Rcpp::List hdelaunay_K(const DMatrix points) {
return hdelaunay_cpp<HDt, HPoint>(points);
}
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8CEB: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:180)
==10659== by 0x1EEA8CEB: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80C3: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80C3: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8148: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8148: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8148: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:282)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8188: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8188: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8188: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA81BC: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA81BC: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA81BC: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81DE: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81DE: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA80D6: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA80D6: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA80D6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80FD: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80FD: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8116: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8116: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8116: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81A6: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81A6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8248: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8248: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8248: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:284)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80C3: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80C3: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8148: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8148: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8148: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:282)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8188: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8188: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8188: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81A6: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81A6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8248: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8248: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8248: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:284)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA67A0: compare<false> (Interval_nt.h:1215)
==10659== by 0x1EEA67A0: operator() (Interval_nt.h:1299)
==10659== by 0x1EEA67A0: compare<CGAL::Interval_nt<false>, CGAL::Interval_nt<false> > (number_utils.h:225)
==10659== by 0x1EEA67A0: CGAL::Sgn<CGAL::Interval_nt<false> >::result_type CGAL::sign_of_determinant<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (sign_of_determinant.h:33)
==10659== by 0x1EEA82D2: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:291)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA67AE: compare<false> (Interval_nt.h:1216)
==10659== by 0x1EEA67AE: operator() (Interval_nt.h:1299)
==10659== by 0x1EEA67AE: compare<CGAL::Interval_nt<false>, CGAL::Interval_nt<false> > (number_utils.h:225)
==10659== by 0x1EEA67AE: CGAL::Sgn<CGAL::Interval_nt<false> >::result_type CGAL::sign_of_determinant<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (sign_of_determinant.h:33)
==10659== by 0x1EEA82D2: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:291)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80C3: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80C3: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8148: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8148: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8148: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:282)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8188: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8188: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8188: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA81BC: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA81BC: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA81BC: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81DE: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81DE: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA80D6: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA80D6: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA80D6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80FD: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80FD: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8116: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8116: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8116: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81A6: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81A6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8248: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8248: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8248: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:284)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80C3: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80C3: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8148: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8148: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8148: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:282)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8188: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8188: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8188: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81A6: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81A6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8248: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8248: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8248: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:284)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA67A0: compare<false> (Interval_nt.h:1215)
==10659== by 0x1EEA67A0: operator() (Interval_nt.h:1299)
==10659== by 0x1EEA67A0: compare<CGAL::Interval_nt<false>, CGAL::Interval_nt<false> > (number_utils.h:225)
==10659== by 0x1EEA67A0: CGAL::Sgn<CGAL::Interval_nt<false> >::result_type CGAL::sign_of_determinant<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (sign_of_determinant.h:33)
==10659== by 0x1EEA82D2: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:291)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA67AE: compare<false> (Interval_nt.h:1216)
==10659== by 0x1EEA67AE: operator() (Interval_nt.h:1299)
==10659== by 0x1EEA67AE: compare<CGAL::Interval_nt<false>, CGAL::Interval_nt<false> > (number_utils.h:225)
==10659== by 0x1EEA67AE: CGAL::Sgn<CGAL::Interval_nt<false> >::result_type CGAL::sign_of_determinant<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (sign_of_determinant.h:33)
==10659== by 0x1EEA82D2: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:291)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE799B1: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE799B1: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE799B1: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE799B1: htest() (hdelaunay.cpp:54)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8CEB: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:180)
==10659== by 0x1EEA8CEB: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA80D6: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA80D6: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA80D6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80FD: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80FD: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8116: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8116: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8116: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81A6: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81A6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8248: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8248: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8248: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:284)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA88B4: operator() (function_objects.h:430)
==10659== by 0x1EEA88B4: operator< (Direction_2.h:121)
==10659== by 0x1EEA88B4: operator() (function_objects.h:3006)
==10659== by 0x1EEA88B4: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80C3: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80C3: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA88B4: operator() (function_objects.h:430)
==10659== by 0x1EEA88B4: operator< (Direction_2.h:121)
==10659== by 0x1EEA88B4: operator() (function_objects.h:3006)
==10659== by 0x1EEA88B4: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8148: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8148: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8148: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:282)
==10659== by 0x1EEA88B4: operator() (function_objects.h:430)
==10659== by 0x1EEA88B4: operator< (Direction_2.h:121)
==10659== by 0x1EEA88B4: operator() (function_objects.h:3006)
==10659== by 0x1EEA88B4: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8188: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8188: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8188: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA88B4: operator() (function_objects.h:430)
==10659== by 0x1EEA88B4: operator< (Direction_2.h:121)
==10659== by 0x1EEA88B4: operator() (function_objects.h:3006)
==10659== by 0x1EEA88B4: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA81BC: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA81BC: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA81BC: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA88B4: operator() (function_objects.h:430)
==10659== by 0x1EEA88B4: operator< (Direction_2.h:121)
==10659== by 0x1EEA88B4: operator() (function_objects.h:3006)
==10659== by 0x1EEA88B4: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81DE: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81DE: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA88B4: operator() (function_objects.h:430)
==10659== by 0x1EEA88B4: operator< (Direction_2.h:121)
==10659== by 0x1EEA88B4: operator() (function_objects.h:3006)
==10659== by 0x1EEA88B4: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8967: operator() (function_objects.h:430)
==10659== by 0x1EEA8967: operator<= (Direction_2.h:142)
==10659== by 0x1EEA8967: operator() (function_objects.h:3006)
==10659== by 0x1EEA8967: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA80D6: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA80D6: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA80D6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8967: operator() (function_objects.h:430)
==10659== by 0x1EEA8967: operator<= (Direction_2.h:142)
==10659== by 0x1EEA8967: operator() (function_objects.h:3006)
==10659== by 0x1EEA8967: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA80FD: operator bool (Uncertain.h:123)
==10659== by 0x1EEA80FD: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8967: operator() (function_objects.h:430)
==10659== by 0x1EEA8967: operator<= (Direction_2.h:142)
==10659== by 0x1EEA8967: operator() (function_objects.h:3006)
==10659== by 0x1EEA8967: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8116: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8116: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8116: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8967: operator() (function_objects.h:430)
==10659== by 0x1EEA8967: operator<= (Direction_2.h:142)
==10659== by 0x1EEA8967: operator() (function_objects.h:3006)
==10659== by 0x1EEA8967: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA81BC: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA81BC: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA81BC: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8967: operator() (function_objects.h:430)
==10659== by 0x1EEA8967: operator<= (Direction_2.h:142)
==10659== by 0x1EEA8967: operator() (function_objects.h:3006)
==10659== by 0x1EEA8967: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA32F4: CGAL::Uncertain<bool>::make_certain() const (Uncertain.h:110)
==10659== by 0x1EEA81DE: operator bool (Uncertain.h:123)
==10659== by 0x1EEA81DE: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8967: operator() (function_objects.h:430)
==10659== by 0x1EEA8967: operator<= (Direction_2.h:142)
==10659== by 0x1EEA8967: operator() (function_objects.h:3006)
==10659== by 0x1EEA8967: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA67A0: compare<false> (Interval_nt.h:1215)
==10659== by 0x1EEA67A0: operator() (Interval_nt.h:1299)
==10659== by 0x1EEA67A0: compare<CGAL::Interval_nt<false>, CGAL::Interval_nt<false> > (number_utils.h:225)
==10659== by 0x1EEA67A0: CGAL::Sgn<CGAL::Interval_nt<false> >::result_type CGAL::sign_of_determinant<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (sign_of_determinant.h:33)
==10659== by 0x1EEA82D2: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:291)
==10659== by 0x1EEA8967: operator() (function_objects.h:430)
==10659== by 0x1EEA8967: operator<= (Direction_2.h:142)
==10659== by 0x1EEA8967: operator() (function_objects.h:3006)
==10659== by 0x1EEA8967: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA81BC: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA81BC: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA81BC: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA80D6: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA80D6: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA80D6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8116: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8116: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8116: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8248: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8248: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8248: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:284)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8148: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8148: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8148: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:282)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8188: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8188: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8188: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA81BC: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA81BC: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA81BC: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8F9A: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8F9A: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:213)
==10659== by 0x1EEA8F9A: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8F9A: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8148: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8148: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8148: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:282)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8188: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8188: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8188: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA81BC: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA81BC: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA81BC: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA87DB: operator() (function_objects.h:430)
==10659== by 0x1EEA87DB: operator< (Direction_2.h:121)
==10659== by 0x1EEA87DB: operator() (function_objects.h:3003)
==10659== by 0x1EEA87DB: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA80D6: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA80D6: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA80D6: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8116: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8116: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8116: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8248: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8248: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8248: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:284)
==10659== by 0x1EEA8838: operator() (function_objects.h:430)
==10659== by 0x1EEA8838: operator< (Direction_2.h:121)
==10659== by 0x1EEA8838: operator() (function_objects.h:3004)
==10659== by 0x1EEA8838: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA809C: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA809C: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA809C: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:281)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8148: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8148: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8148: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:282)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8188: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8188: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8188: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:283)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659==
==10659== Conditional jump or move depends on uninitialised value(s)
==10659== at 0x1EEA8248: operator<= (Interval_nt.h:353)
==10659== by 0x1EEA8248: operator>= (Interval_nt.h:403)
==10659== by 0x1EEA8248: CGAL::Compare<CGAL::Interval_nt<false> >::result_type CGAL::compare_angle_with_x_axisC2<CGAL::Interval_nt<false> >(CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&, CGAL::Interval_nt<false> const&) (kernel_ftC2.h:284)
==10659== by 0x1EEA887C: operator() (function_objects.h:430)
==10659== by 0x1EEA887C: operator<= (Direction_2.h:142)
==10659== by 0x1EEA887C: operator() (function_objects.h:3004)
==10659== by 0x1EEA887C: bool CGAL::Filtered_predicate<CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::CommonKernelFunctors::Counterclockwise_in_between_2<CGAL::Simple_cartesian<CGAL::Interval_nt<false> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> >, CGAL::NT_converter<double, boost::multiprecision::number<boost::multiprecision::backends::gmp_rational, (boost::multiprecision::expression_template_option)1> > >, CGAL::Cartesian_converter<CGAL::Type_equality_wrapper<CGAL::Cartesian_base_no_ref_count<double, CGAL::Epick>, CGAL::Epick>, CGAL::Simple_cartesian<CGAL::Interval_nt<false> >, CGAL::NT_converter<double, CGAL::Interval_nt<false> > >, true>::operator()<CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick>, CGAL::Direction_2<CGAL::Epick> >(CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&, CGAL::Direction_2<CGAL::Epick> const&) const (Filtered_predicate.h:102)
==10659== by 0x1EEA8FB1: counterclockwise_in_between (Direction_2.h:91)
==10659== by 0x1EEA8FB1: find_non_hyperbolic_edge (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:216)
==10659== by 0x1EEA8FB1: operator() (Hyperbolic_Delaunay_triangulation_traits_2_functions.h:182)
==10659== by 0x1EEA8FB1: CGAL::Hyperbolic_Delaunay_triangulation_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > >::mark_face(CGAL::internal::CC_iterator<CGAL::Compact_container<CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<CGAL::Triangulation_data_structure_2<CGAL::Triangulation_vertex_base_with_id_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_vertex_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_vertex_base_2<void> > >, CGAL::Hyperbolic_triangulation_face_base_2<CGAL::Hyperbolic_Delaunay_triangulation_traits_2<CGAL::Epick>, CGAL::Triangulation_ds_face_base_2<void> > > > >, CGAL::Default, CGAL::Default, CGAL::Default>, false>) const (Hyperbolic_Delaunay_triangulation_2.h:802)
==10659== by 0x1EE79B3D: mark_star_faces (Hyperbolic_Delaunay_triangulation_2.h:792)
==10659== by 0x1EE79B3D: mark_star (Hyperbolic_Delaunay_triangulation_2.h:407)
==10659== by 0x1EE79B3D: insert (Hyperbolic_Delaunay_triangulation_2.h:420)
==10659== by 0x1EE79B3D: htest() (hdelaunay.cpp:55)
==10659== by 0x1EE6B842: _gyro_htest (RcppExports.cpp:75)
==10659== by 0x4948823: R_doDotCall (dotcode.c:598)
==10659== by 0x498C2F6: bcEval (eval.c:7692)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
==10659== by 0x49A1CDE: R_execClosure (eval.c:1918)
==10659== by 0x49A2BD1: Rf_applyClosure (eval.c:1844)
==10659== by 0x498D75D: bcEval (eval.c:7104)
==10659== by 0x499FE27: Rf_eval (eval.c:748)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment