summaryrefslogtreecommitdiff
path: root/src/python/test/test_tangential_complex.py
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-01-28 11:05:39 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-01-28 11:05:39 +0100
commitef2c5b53e88321f07ad93496f00dde16dc20f018 (patch)
tree0a7c4d1d7f69a691259e98ceed1439421fb14f3e /src/python/test/test_tangential_complex.py
parent0b77fdd5d9bd057103cb23020089a6628c1f14e6 (diff)
Code review: rename get_simplex_filtration with get_simplex_and_filtration. Remove exception raise. Fix failed tests. Reword documentation
Diffstat (limited to 'src/python/test/test_tangential_complex.py')
-rwxr-xr-xsrc/python/test/test_tangential_complex.py19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/python/test/test_tangential_complex.py b/src/python/test/test_tangential_complex.py
index e650e99c..90e2c75b 100755
--- a/src/python/test/test_tangential_complex.py
+++ b/src/python/test/test_tangential_complex.py
@@ -9,6 +9,7 @@
"""
from gudhi import TangentialComplex, SimplexTree
+import pytest
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
@@ -37,14 +38,16 @@ def test_tangential():
assert st.num_simplices() == 6
assert st.num_vertices() == 4
- assert st.get_filtration() == [
- ([0], 0.0),
- ([1], 0.0),
- ([2], 0.0),
- ([0, 2], 0.0),
- ([3], 0.0),
- ([1, 3], 0.0),
- ]
+ filtration_generator = st.get_filtration()
+ assert(next(filtration_generator) == ([0], 0.0))
+ assert(next(filtration_generator) == ([1], 0.0))
+ assert(next(filtration_generator) == ([2], 0.0))
+ assert(next(filtration_generator) == ([0, 2], 0.0))
+ assert(next(filtration_generator) == ([3], 0.0))
+ assert(next(filtration_generator) == ([1, 3], 0.0))
+ with pytest.raises(StopIteration):
+ next(filtration_generator)
+
assert st.get_cofaces([0], 1) == [([0, 2], 0.0)]
assert point_list[0] == tc.get_point(0)