summaryrefslogtreecommitdiff
path: root/src/cython/test
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-08-18 15:33:26 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-08-18 15:33:26 +0000
commit355dc2a0ae73f243fc0aa8d7c797509d8ba5e6b4 (patch)
tree14a55c916804af2ba5254374590d2a1ec8904005 /src/cython/test
parent777ed59f7d723139114b072682729eaed8596881 (diff)
Move pandas files points into data/pandas
Fix example and tests New persistence constructor for cubical to increase max_persistence_dim (and only for cubical, periodic or not) git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@1442 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 243a843a65a82b9d3d8d564aa906c0a17eda176a
Diffstat (limited to 'src/cython/test')
-rwxr-xr-xsrc/cython/test/test_cubical_complex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cython/test/test_cubical_complex.py b/src/cython/test/test_cubical_complex.py
index af4c34ef..c8df8089 100755
--- a/src/cython/test/test_cubical_complex.py
+++ b/src/cython/test/test_cubical_complex.py
@@ -82,5 +82,5 @@ def test_dimension_constructor():
assert cub.__is_persistence_defined() == False
assert cub.persistence() == [(1, (0.0, 100.0)), (0, (0.0, 1.8446744073709552e+19))]
assert cub.__is_persistence_defined() == True
- assert cub.betti_numbers() == [1, 0]
- assert cub.persistent_betti_numbers(0, 1000) == [1, 0]
+ assert cub.betti_numbers() == [1, 0, 0]
+ assert cub.persistent_betti_numbers(0, 1000) == [1, 0, 0]