summaryrefslogtreecommitdiff
path: root/src/python/test/test_simplex_tree.py
diff options
context:
space:
mode:
authorMathieuCarriere <mathieu.carriere3@gmail.com>2020-03-23 21:22:16 -0400
committerMathieuCarriere <mathieu.carriere3@gmail.com>2020-03-23 21:22:16 -0400
commitbc223c3cc7cb9e9c0bb3573af720fce9c5380b94 (patch)
treef52f422105e609d0eb43d29cd0a942c9db52bf71 /src/python/test/test_simplex_tree.py
parent1e0e378ab442672ef569e93c4114b0e99ea70f6e (diff)
new fixes
Diffstat (limited to 'src/python/test/test_simplex_tree.py')
-rwxr-xr-xsrc/python/test/test_simplex_tree.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/python/test/test_simplex_tree.py b/src/python/test/test_simplex_tree.py
index 20f6aabf..70b26e97 100755
--- a/src/python/test/test_simplex_tree.py
+++ b/src/python/test/test_simplex_tree.py
@@ -291,10 +291,8 @@ def test_extend_filtration():
([5], 6.0)
]
-
st.extend_filtration()
- st.initialize_filtration()
-
+
assert list(st.get_filtration()) == [
([6], -3.0),
([0], -2.0),
@@ -323,7 +321,7 @@ def test_extend_filtration():
([0, 3, 6], 2.0)
]
- dgms = st.extended_persistence()
+ dgms = st.extended_persistence(min_persistence=-1.)
assert dgms[0][0][1][0] == pytest.approx(2.)
assert dgms[0][0][1][1] == pytest.approx(3.)
@@ -334,7 +332,6 @@ def test_extend_filtration():
assert dgms[3][0][1][0] == pytest.approx(6.)
assert dgms[3][0][1][1] == pytest.approx(1.)
-
def test_simplices_iterator():
st = SimplexTree()