summaryrefslogtreecommitdiff
path: root/src/Cech_complex/benchmark
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-01-19 08:11:03 +0100
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-01-19 08:11:03 +0100
commitf76dcd1fe954b77e1d8af368b7fe75355f944a80 (patch)
treea2508f0be2b2c8671665d82c150baf78c9380705 /src/Cech_complex/benchmark
parentdf575b8786b484a631ab4d298ce5d12199f3b5a7 (diff)
parentde5aa9c891ef13c9fc2b2635bcd27ab873b0057b (diff)
Merge master
Diffstat (limited to 'src/Cech_complex/benchmark')
-rw-r--r--src/Cech_complex/benchmark/cech_complex_benchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Cech_complex/benchmark/cech_complex_benchmark.cpp b/src/Cech_complex/benchmark/cech_complex_benchmark.cpp
index e489e8a4..2e4adce4 100644
--- a/src/Cech_complex/benchmark/cech_complex_benchmark.cpp
+++ b/src/Cech_complex/benchmark/cech_complex_benchmark.cpp
@@ -49,7 +49,7 @@ class Minimal_enclosing_ball_radius {
point_cloud.push_back(p1);
point_cloud.push_back(p2);
- GUDHI_CHECK((p1.end() - p1.begin()) != (p2.end() - p2.begin()), "inconsistent point dimensions");
+ GUDHI_CHECK((p1.end() - p1.begin()) == (p2.end() - p2.begin()), "inconsistent point dimensions");
Min_sphere min_sphere(p1.end() - p1.begin(), point_cloud.begin(), point_cloud.end());
return std::sqrt(min_sphere.squared_radius());