summaryrefslogtreecommitdiff
path: root/src/Cech_complex/benchmark/cech_complex_benchmark.cpp
diff options
context:
space:
mode:
authorHind-M <hind.montassif@gmail.com>2022-08-04 15:43:12 +0200
committerHind-M <hind.montassif@gmail.com>2022-08-04 15:43:12 +0200
commitcfdde35b30bdb49319b2806588de0e487aec654e (patch)
tree225b0b543ba5700495488fc8b0a9051197ae4982 /src/Cech_complex/benchmark/cech_complex_benchmark.cpp
parent5f984492c11047f39f24f8797a5fe1d047020cf9 (diff)
Use exact option when computing edges filtrations as well in cech
Diffstat (limited to 'src/Cech_complex/benchmark/cech_complex_benchmark.cpp')
-rw-r--r--src/Cech_complex/benchmark/cech_complex_benchmark.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Cech_complex/benchmark/cech_complex_benchmark.cpp b/src/Cech_complex/benchmark/cech_complex_benchmark.cpp
index a9dc5d0d..a0e727be 100644
--- a/src/Cech_complex/benchmark/cech_complex_benchmark.cpp
+++ b/src/Cech_complex/benchmark/cech_complex_benchmark.cpp
@@ -40,9 +40,9 @@ Simplex_tree benchmark_cech(const std::string& off_file_points, const Filtration
Points_off_reader_cgal off_reader_cgal(off_file_points);
Gudhi::Clock cech_clock("Cech computation");
- Cech_complex cech_complex_from_points(off_reader_cgal.get_point_cloud(), radius);
+ Cech_complex cech_complex_from_points(off_reader_cgal.get_point_cloud(), radius, exact);
Simplex_tree cech_stree;
- cech_complex_from_points.create_complex(cech_stree, dim_max, exact);
+ cech_complex_from_points.create_complex(cech_stree, dim_max);
// ------------------------------------------
// Display information about the Cech complex