summaryrefslogtreecommitdiff
path: root/src/cython/test/test_witness_complex.py
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-06-23 09:49:03 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-06-23 09:49:03 +0000
commit8cb574ec24253e908960e00d950f2b319aabf793 (patch)
tree7dbf15c2798904f809fc508a91950c7c12439088 /src/cython/test/test_witness_complex.py
parent0d7729ea665cd2d3c4cabe02fde9c82ea8d86a97 (diff)
Cubical complex unitary tests
Using pytest because of unittest bug on __function in cython git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@1332 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: bbb829104ddb14173cdb066c40e73273fac0c720
Diffstat (limited to 'src/cython/test/test_witness_complex.py')
-rwxr-xr-xsrc/cython/test/test_witness_complex.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/cython/test/test_witness_complex.py b/src/cython/test/test_witness_complex.py
index f9bbe077..2891935d 100755
--- a/src/cython/test/test_witness_complex.py
+++ b/src/cython/test/test_witness_complex.py
@@ -31,11 +31,13 @@ __license__ = "GPL v3"
class TestWitnessComplex(unittest.TestCase):
- def test_infinite_alpha(self):
+ def test_witness_complex(self):
point_list = [[0, 0], [1, 0], [0, 1], [1, 1]]
witness = gudhi.WitnessComplex(points=point_list,
number_of_landmarks=10)
+ # FIXME: Remove this line
+ witness.set_dimension(2)
self.assertEqual(witness.num_simplices(), 13)
self.assertEqual(witness.num_vertices(), 10)
@@ -46,8 +48,12 @@ class TestWitnessComplex(unittest.TestCase):
([1, 2], 0.0), ([3], 0.0), ([4], 0.0), ([3, 4], 0.0),
([5], 0.0), ([6], 0.0), ([7], 0.0), ([8], 0.0),
([9], 0.0)])
- self.assertEqual(witness.get_star_tree([0]), [])
- self.assertEqual(witness.get_coface_tree([0], 1), [])
+
+ self.assertEqual(witness.get_coface_tree([2], 1),
+ [([0, 2], 0.0), ([1, 2], 0.0)])
+ self.assertEqual(witness.get_star_tree([2]),
+ [([0, 2], 0.0), ([1, 2], 0.0), ([2], 0.0)])
+
if __name__ == '__main__':
unittest.main()