summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/benchmark
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-11-21 08:49:55 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-11-21 08:49:55 +0000
commiteef89bb492169faeb57dfdc65222b6a0483cb7c8 (patch)
tree021cc184f10f1d641192dcfde688645f5df0efab /src/Alpha_complex/benchmark
parentab6719fb3391569be1231dc9e9dedba5df86c2fd (diff)
Code review : Use # error instead of static_assert(false, ...) for CGAL version detection
Doc review : Better document CGAL types (FT, Weighted_point_3, Point_3, ...) Weighted alpha complex 3d example simplification git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_complex_3d_module_vincent@4009 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 187d7a08468c96192b3cb82c93a2df5b425290f9
Diffstat (limited to 'src/Alpha_complex/benchmark')
-rw-r--r--src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp b/src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp
index 96a4baf3..005a712a 100644
--- a/src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp
+++ b/src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp
@@ -116,7 +116,7 @@ void benchmark_weighted_points_on_torus_3D(const std::string& msg) {
std::vector<K::Point_d> points_on_torus = Gudhi::generate_points_on_torus_3D<K>(nb_points, 1.0, 0.5);
using Point = typename Weighted_alpha_complex_3d::Point_3;
- using Weighted_point = typename Weighted_alpha_complex_3d::Triangulation_3::Weighted_point;
+ using Weighted_point = typename Weighted_alpha_complex_3d::Weighted_point_3;
std::vector<Weighted_point> points;
@@ -207,7 +207,7 @@ void benchmark_weighted_periodic_points(const std::string& msg) {
<< std::endl;
using Point = typename Weighted_periodic_alpha_complex_3d::Point_3;
- using Weighted_point = typename Weighted_periodic_alpha_complex_3d::Triangulation_3::Weighted_point;
+ using Weighted_point = typename Weighted_periodic_alpha_complex_3d::Weighted_point_3;
std::vector<Weighted_point> points;
for (double i = 0; i < nb_points; i++) {