summaryrefslogtreecommitdiff
path: root/src/cython/include/Bottleneck_distance_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cython/include/Bottleneck_distance_interface.h')
-rw-r--r--src/cython/include/Bottleneck_distance_interface.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cython/include/Bottleneck_distance_interface.h b/src/cython/include/Bottleneck_distance_interface.h
index b814661e..6819734b 100644
--- a/src/cython/include/Bottleneck_distance_interface.h
+++ b/src/cython/include/Bottleneck_distance_interface.h
@@ -34,14 +34,14 @@ namespace Gudhi {
namespace persistence_diagram {
// bottleneck_distance function renamed for the python function can be called bottleneck_dstance
- double bottleneck(const std::vector<std::pair<double, double>> &diag1,
- const std::vector<std::pair<double, double>> &diag2,
+ double bottleneck(const std::vector<std::pair<double, double>>& diag1,
+ const std::vector<std::pair<double, double>>& diag2,
double e) {
return bottleneck_distance(diag1, diag2, e);
}
- double bottleneck(const std::vector<std::pair<double, double>> &diag1,
- const std::vector<std::pair<double, double>> &diag2) {
+ double bottleneck(const std::vector<std::pair<double, double>>& diag1,
+ const std::vector<std::pair<double, double>>& diag2) {
return bottleneck_distance(diag1, diag2);
}