summaryrefslogtreecommitdiff
path: root/src/cython/example/rips_persistence_diagram.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/cython/example/rips_persistence_diagram.py')
-rwxr-xr-xsrc/cython/example/rips_persistence_diagram.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cython/example/rips_persistence_diagram.py b/src/cython/example/rips_persistence_diagram.py
index 6b02eac9..f5897d7b 100755
--- a/src/cython/example/rips_persistence_diagram.py
+++ b/src/cython/example/rips_persistence_diagram.py
@@ -18,8 +18,7 @@ __license__ = "MIT"
print("#####################################################################")
print("RipsComplex creation from points")
-rips = gudhi.RipsComplex(points=[[0, 0], [1, 0], [0, 1], [1, 1]],
- max_edge_length=42)
+rips = gudhi.RipsComplex(points=[[0, 0], [1, 0], [0, 1], [1, 1]], max_edge_length=42)
simplex_tree = rips.create_simplex_tree(max_dimension=1)