summaryrefslogtreecommitdiff
path: root/src/cython/doc/simplex_tree_user.rst
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-04-01 09:36:35 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-04-01 09:36:35 +0000
commit202bf9722358355c12e85c0718da567ce9d9a6ae (patch)
treef90ac80f9aab2d9f1ca6350608b29b7c367943a4 /src/cython/doc/simplex_tree_user.rst
parent99695369a066962339d7f85a4dc4981a804b3a54 (diff)
remove bad named *_tree() functions
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@2300 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 512403fe0838fb2691e0af94c55772bff942b740
Diffstat (limited to 'src/cython/doc/simplex_tree_user.rst')
-rw-r--r--src/cython/doc/simplex_tree_user.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cython/doc/simplex_tree_user.rst b/src/cython/doc/simplex_tree_user.rst
index c4e4c1b5..b2efca8b 100644
--- a/src/cython/doc/simplex_tree_user.rst
+++ b/src/cython/doc/simplex_tree_user.rst
@@ -45,8 +45,8 @@ Example
print(result_str)
result_str = 'num_simplices=' + repr(st.num_simplices())
print(result_str)
- print("skeleton_tree(2) =")
- for sk_value in st.get_skeleton_tree(2):
+ print("skeleton(2) =")
+ for sk_value in st.get_skeleton(2):
print(sk_value)
@@ -59,7 +59,7 @@ The output is:
[0, 1] found
num_vertices=3
num_simplices=7
- skeleton_tree(2) =
+ skeleton(2) =
([0, 1, 2], 4.0)
([0, 1], 0.0)
([0, 2], 4.0)