summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2019-11-16 22:58:25 +0100
committerGitHub <noreply@github.com>2019-11-16 22:58:25 +0100
commit6c341ffd5500f6393467fce3f5e091afc354d25b (patch)
treef1f33cc70852959c4dbed2266cccd126074b3560 /src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp
parent184587947b18daf57583c7cb111ad315b8d48a43 (diff)
parent6d2e5d1cbdecd86ad4d56fc8902542caca2cf2bd (diff)
Merge pull request #123 from VincentRouvreau/alpha_complex_3d_get_point
Add a get_point method for Alpha_complex_3d.
Diffstat (limited to 'src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp')
-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 005a712a..99ad94b9 100644
--- a/src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp
+++ b/src/Alpha_complex/benchmark/Alpha_complex_3d_benchmark.cpp
@@ -115,7 +115,7 @@ void benchmark_weighted_points_on_torus_3D(const std::string& msg) {
std::cout << " Alpha complex 3d on torus with " << nb_points << " points." << std::endl;
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 Point = typename Weighted_alpha_complex_3d::Bare_point_3;
using Weighted_point = typename Weighted_alpha_complex_3d::Weighted_point_3;
std::vector<Weighted_point> points;
@@ -206,7 +206,7 @@ void benchmark_weighted_periodic_points(const std::string& msg) {
std::cout << " Weighted periodic alpha complex 3d with " << nb_points * nb_points * nb_points << " points."
<< std::endl;
- using Point = typename Weighted_periodic_alpha_complex_3d::Point_3;
+ using Point = typename Weighted_periodic_alpha_complex_3d::Bare_point_3;
using Weighted_point = typename Weighted_periodic_alpha_complex_3d::Weighted_point_3;
std::vector<Weighted_point> points;