summaryrefslogtreecommitdiff
path: root/cython/test/test_cubical_complex.py
diff options
context:
space:
mode:
authorGard Spreemann <gspreemann@gmail.com>2017-10-09 10:47:31 +0200
committerGard Spreemann <gspreemann@gmail.com>2017-10-09 10:47:31 +0200
commit673b6bb63befd7e591e52c13f43e5db53e5b29bd (patch)
tree3f15d96ef39bf0c6cf656d176ff1c437cacf5988 /cython/test/test_cubical_complex.py
parent9466ce44e348487fc04a1fda493ed659ae92b775 (diff)
parent866f6ce614e9c09c97fed12c8c0c2c9fb84fad3f (diff)
Merge tag 'upstream/2.0.1' into dfsg/latest
Upstream's 2.0.1 release.
Diffstat (limited to 'cython/test/test_cubical_complex.py')
-rwxr-xr-xcython/test/test_cubical_complex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cython/test/test_cubical_complex.py b/cython/test/test_cubical_complex.py
index 2e281ee4..9a365823 100755
--- a/cython/test/test_cubical_complex.py
+++ b/cython/test/test_cubical_complex.py
@@ -67,7 +67,7 @@ def test_dimension_constructor():
top_dimensional_cells = [1,2,3,4,5,6,7,8,9])
assert cub.__is_defined() == True
assert cub.__is_persistence_defined() == False
- assert cub.persistence() == [(1, (0.0, 100.0)), (0, (0.0, 1.8446744073709552e+19))]
+ assert cub.persistence() == [(1, (0.0, 100.0)), (0, (0.0, float('inf')))]
assert cub.__is_persistence_defined() == True
assert cub.betti_numbers() == [1, 0]
assert cub.persistent_betti_numbers(0, 1000) == [0, 0]
@@ -80,7 +80,7 @@ def test_dimension_constructor():
cub = CubicalComplex(perseus_file='CubicalOneSphere.txt')
assert cub.__is_defined() == True
assert cub.__is_persistence_defined() == False
- assert cub.persistence() == [(1, (0.0, 100.0)), (0, (0.0, 1.8446744073709552e+19))]
+ assert cub.persistence() == [(1, (0.0, 100.0)), (0, (0.0, float('inf')))]
assert cub.__is_persistence_defined() == True
assert cub.betti_numbers() == [1, 0, 0]
assert cub.persistent_betti_numbers(0, 1000) == [1, 0, 0]