summaryrefslogtreecommitdiff
path: root/src/Cech_complex/benchmark/cech_complex_benchmark.cpp
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2022-08-10 11:27:08 +0200
committerGitHub <noreply@github.com>2022-08-10 11:27:08 +0200
commit99a29efd4f3bf27d181c26acb822cc30a18aca0e (patch)
tree9bfbf48dd5992164970bdab6c8eb61e885d3c31b /src/Cech_complex/benchmark/cech_complex_benchmark.cpp
parenta5978f81faf2aeaa3b3df682caf791aae50fd948 (diff)
parent93b4fc9db0feb92e14e176c7ee5b6bbe8cf5a832 (diff)
Merge pull request #667 from Hind-M/cech_exact
[Cech] Use exact option when computing edges filtrations
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