summaryrefslogtreecommitdiff
path: root/src/Bottleneck/concept
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-03-19 12:19:22 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-03-19 12:19:22 +0000
commit8c820ca8f9da625084f94dc9b80bb936f2c7aa8a (patch)
treeceeb3cefb54bf30a4819534bffb4a791ef1be2d3 /src/Bottleneck/concept
parenta52663bd7c94c402200605062b7e70dc4575d781 (diff)
Add of bottleneck functionnality
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/bottleneckDistance@492 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 68ecf70a07641fea7106a17bbbf45404747834cc
Diffstat (limited to 'src/Bottleneck/concept')
-rw-r--r--src/Bottleneck/concept/Persistence_diagram.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Bottleneck/concept/Persistence_diagram.h b/src/Bottleneck/concept/Persistence_diagram.h
new file mode 100644
index 00000000..eaaf8bc5
--- /dev/null
+++ b/src/Bottleneck/concept/Persistence_diagram.h
@@ -0,0 +1,7 @@
+typedef typename std::pair<double,double> Diagram_point;
+
+struct Persistence_Diagram
+{
+ const_iterator<Diagram_point> cbegin() const;
+ const_iterator<Diagram_point> cend() const;
+};