summaryrefslogtreecommitdiff
path: root/src/python/test/test_euclidean_witness_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_euclidean_witness_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_euclidean_witness_complex.py')
-rwxr-xr-xsrc/python/test/test_euclidean_witness_complex.py46
1 files changed, 27 insertions, 19 deletions
diff --git a/src/python/test/test_euclidean_witness_complex.py b/src/python/test/test_euclidean_witness_complex.py
index c18d2484..16ff1ef4 100755
--- a/src/python/test/test_euclidean_witness_complex.py
+++ b/src/python/test/test_euclidean_witness_complex.py
@@ -9,6 +9,7 @@
"""
import gudhi
+import pytest
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
@@ -40,15 +41,16 @@ def test_witness_complex():
assert landmarks[1] == euclidean_witness_complex.get_point(1)
assert landmarks[2] == euclidean_witness_complex.get_point(2)
- assert simplex_tree.get_filtration() == [
- ([0], 0.0),
- ([1], 0.0),
- ([0, 1], 0.0),
- ([2], 0.0),
- ([0, 2], 0.0),
- ([1, 2], 0.0),
- ([0, 1, 2], 0.0),
- ]
+ filtration_generator = simplex_tree.get_filtration()
+ assert(next(filtration_generator) == ([0], 0.0))
+ assert(next(filtration_generator) == ([1], 0.0))
+ assert(next(filtration_generator) == ([0, 1], 0.0))
+ assert(next(filtration_generator) == ([2], 0.0))
+ assert(next(filtration_generator) == ([0, 2], 0.0))
+ assert(next(filtration_generator) == ([1, 2], 0.0))
+ assert(next(filtration_generator) == ([0, 1, 2], 0.0))
+ with pytest.raises(StopIteration):
+ next(filtration_generator)
def test_empty_euclidean_strong_witness_complex():
@@ -78,18 +80,24 @@ def test_strong_witness_complex():
assert landmarks[1] == euclidean_strong_witness_complex.get_point(1)
assert landmarks[2] == euclidean_strong_witness_complex.get_point(2)
- assert simplex_tree.get_filtration() == [([0], 0.0), ([1], 0.0), ([2], 0.0)]
+ filtration_generator = simplex_tree.get_filtration()
+ assert(next(filtration_generator) == ([0], 0.0))
+ assert(next(filtration_generator) == ([1], 0.0))
+ assert(next(filtration_generator) == ([2], 0.0))
+ with pytest.raises(StopIteration):
+ next(filtration_generator)
simplex_tree = euclidean_strong_witness_complex.create_simplex_tree(
max_alpha_square=100.0
)
- assert simplex_tree.get_filtration() == [
- ([0], 0.0),
- ([1], 0.0),
- ([2], 0.0),
- ([1, 2], 15.0),
- ([0, 2], 34.0),
- ([0, 1], 37.0),
- ([0, 1, 2], 37.0),
- ]
+ filtration_generator = simplex_tree.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) == ([1, 2], 15.0))
+ assert(next(filtration_generator) == ([0, 2], 34.0))
+ assert(next(filtration_generator) == ([0, 1], 37.0))
+ assert(next(filtration_generator) == ([0, 1, 2], 37.0))
+ with pytest.raises(StopIteration):
+ next(filtration_generator)