summaryrefslogtreecommitdiff
path: root/src/cython/example/simplex_tree_example.py
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-04-10 16:39:02 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-04-10 16:39:02 +0000
commitd6a275cde67490784f1f7a4362c07a1132672344 (patch)
tree82dc822e23f276daec84cc09a0fb410c31c40bfe /src/cython/example/simplex_tree_example.py
parentc536d49278965cd578281ecbec72cea2c8b90cc3 (diff)
parenteb0bd21b93509e8a2cb9485ac46dcba128893538 (diff)
Merge last trunk modifications
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/farthest_distance@2329 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: ba0fbf37ea8108d8c3ca21162d7cb815a92336f7
Diffstat (limited to 'src/cython/example/simplex_tree_example.py')
-rwxr-xr-xsrc/cython/example/simplex_tree_example.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cython/example/simplex_tree_example.py b/src/cython/example/simplex_tree_example.py
index bf5f17a2..3af20fcf 100755
--- a/src/cython/example/simplex_tree_example.py
+++ b/src/cython/example/simplex_tree_example.py
@@ -61,6 +61,6 @@ print("filtration[4, 2]=", st.filtration([4, 2]))
print("num_simplices=", st.num_simplices())
print("num_vertices=", st.num_vertices())
-print("skeleton_tree[2]=", st.get_skeleton_tree(2))
-print("skeleton_tree[1]=", st.get_skeleton_tree(1))
-print("skeleton_tree[0]=", st.get_skeleton_tree(0))
+print("skeleton[2]=", st.get_skeleton(2))
+print("skeleton[1]=", st.get_skeleton(1))
+print("skeleton[0]=", st.get_skeleton(0))