Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Performance of Triangulation_3

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Performance of Triangulation_3


Chronological Thread 
  • From: mytien <>
  • To:
  • Subject: Re: [cgal-discuss] Performance of Triangulation_3
  • Date: Wed, 16 Oct 2013 03:15:51 -0700 (PDT)

So I compared both triangulation templates. While Delaunay_triangulation_3 is
much faster than Triangulation_3, especially with growing amount of points,
it is still far from reaching the performance in the manual.
Also, I ran every test three times and apart from the slow performance in
general I am worried about the huge differences. For example duration of
Delaunay_triangulation_3 on 50'000 points varies by 10 seconds...

t3 = CGAL::Triangulation_3<K>
dt3 = CGAL::Delaunay_triangulation_3<K>
time in milliseconds

1000 points
t3 ~230 - ~350
dt3 ~250 - ~280

10'000 points
t3 ~4300 - ~5100
dt3 ~2570 - ~5100

20'000 points
t3 ~12200 - ~16500
dt3 ~4760 - ~6000

50'000 points
t3 ~53400 - ~65400
dt3 ~16900 - ~26500



--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Performance-of-Triangulation-3-tp4658201p4658209.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page