summaryrefslogtreecommitdiff
path: root/src/python/gudhi/bottleneck.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/gudhi/bottleneck.cc')
-rw-r--r--src/python/gudhi/bottleneck.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/bottleneck.cc b/src/python/gudhi/bottleneck.cc
index 1cf3283c..040e6d37 100644
--- a/src/python/gudhi/bottleneck.cc
+++ b/src/python/gudhi/bottleneck.cc
@@ -20,7 +20,7 @@ static auto make_point(double x, double y, py::ssize_t) { return std::pair(x, y)
double bottleneck(Dgm d1, Dgm d2, std::optional<double> epsilon)
{
double e = epsilon.value_or((std::numeric_limits<double>::min)());
- // I *think* the call to request() has to be before releasing the GIL.
+ // I *think* the call to request() in numpy_to_range_of_pairs has to be before releasing the GIL.
auto diag1 = numpy_to_range_of_pairs(d1, make_point);
auto diag2 = numpy_to_range_of_pairs(d2, make_point);