summaryrefslogtreecommitdiff
path: root/src/cython/example/Simplex_tree_example.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/cython/example/Simplex_tree_example.py')
-rwxr-xr-xsrc/cython/example/Simplex_tree_example.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/cython/example/Simplex_tree_example.py b/src/cython/example/Simplex_tree_example.py
index 049b2ca4..119fbc65 100755
--- a/src/cython/example/Simplex_tree_example.py
+++ b/src/cython/example/Simplex_tree_example.py
@@ -39,15 +39,6 @@ print("skeleton_tree[1]=", st.get_skeleton_tree(1))
print("skeleton_tree[0]=", st.get_skeleton_tree(0))
print("#######################################################################")
-print("SimplexTree creation from Rips")
-st_from_rips = gudhi.SimplexTree(points=[[0,0],[1,0],[0,1],[1,1]],max_dimension=1,max_edge_length=42)
-
-print("filtered_tree=", st_from_rips.get_filtered_tree())
-print("star([0])=", st_from_rips.get_star_tree([0]))
-print("coface([0],1)=", st_from_rips.get_coface_tree([0], 1))
-
-
-print("#######################################################################")
print("MiniSimplexTree creation from insertion")
triangle012 = [0, 1, 2]
edge03 = [0, 3]