Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Re: is fast location for periodic Delaunay broken?

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Re: is fast location for periodic Delaunay broken?


Chronological Thread 
  • From: Manuel Caroli <>
  • To:
  • Subject: Re: [cgal-discuss] Re: is fast location for periodic Delaunay broken?
  • Date: Thu, 29 Apr 2010 13:25:42 +0200

Dear Ariel Keselman,

On 29/04/10 11:51, Ariel Keselman wrote:

Well.. not exactly solved. It compiles, but doesn't run-
program gets stuck at the first insert(begin,end,true);
What exactly does it mean "get stuck"?
Please compile in "Debug" mode and run it again and tell us what happens (i.e. which assertion is thrown or what other behavior it shows).

this is how I defined the triangulation, I need a vertex
with info:
This looks ok.

best

Manuel


typedef CGAL::Exact_predicates_inexact_constructions_kernel TKernel;
typedef CGAL::Periodic_3_triangulation_traits_3<TKernel> TTraits;
typedef CGAL::Periodic_3_triangulation_ds_vertex_base_3<> TdVBase;
typedef CGAL::Triangulation_vertex_base_3<TTraits,TdVBase> TVBase;
typedef CGAL::Periodic_3_triangulation_ds_cell_base_3<> TdCBase;
typedef CGAL::Triangulation_cell_base_3<TTraits,TdCBase> TCBase;
typedef CGAL::Triangulation_vertex_base_with_info_3<tvi,TTraits,TVBase>
TiVBase_s;
typedef CGAL::Triangulation_hierarchy_vertex_base_3<TiVBase_s> TiVBase; ///
typedef CGAL::Triangulation_data_structure_3<TiVBase, TCBase> TDS;
typedef CGAL::Periodic_3_Delaunay_triangulation_3<TTraits, TDS> TPDT_s;
typedef CGAL::Periodic_3_triangulation_hierarchy_3<TPDT_s> PDT;





Archive powered by MHonArc 2.6.16.

Top of Page