summaryrefslogtreecommitdiff
path: root/src/Bottleneck_distance/example
diff options
context:
space:
mode:
authorcjamin <cjamin@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-05-30 13:00:15 +0000
committercjamin <cjamin@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-05-30 13:00:15 +0000
commit6d4b5ec65b863abb5b183635a0e64341c19e7b4b (patch)
tree513cf71b45bd4c205cb665f3e5db07c062d58b1e /src/Bottleneck_distance/example
parent006516d2df5eaa6e38765158f72fa29fea8fb610 (diff)
Clean-up
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/read_persistence_from_file@2474 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 9586b4987dad745fa60bca1a433349a2f78fa9bd
Diffstat (limited to 'src/Bottleneck_distance/example')
-rw-r--r--src/Bottleneck_distance/example/bottleneck_read_file_example.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Bottleneck_distance/example/bottleneck_read_file_example.cpp b/src/Bottleneck_distance/example/bottleneck_read_file_example.cpp
index f6fd6501..de8c7f9d 100644
--- a/src/Bottleneck_distance/example/bottleneck_read_file_example.cpp
+++ b/src/Bottleneck_distance/example/bottleneck_read_file_example.cpp
@@ -29,14 +29,6 @@
#include <sstream>
#include <string>
-struct Persistence_interval
- : std::pair<double, double>
-{
- Persistence_interval(std::tuple<int, double, double> data)
- : std::pair<double, double>(std::make_pair(std::get<1>(data), std::get<2>(data)))
- {}
-};
-
int main(int argc, char** argv) {
if (argc < 3) {
std::cout << "To run this program please provide as an input two files with persistence diagrams. Each file " <<