summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwreise <wojciech.reise@epfl.ch>2022-10-15 16:54:04 +0200
committerwreise <wojciech.reise@epfl.ch>2022-10-15 16:54:04 +0200
commit80edbbaccc344abfa18ebc48a8493f747a775476 (patch)
treeb193149de2c488ede9819dbce7d550bf350ddf4c
parent4aac9e03c400bd43f237504cf4ff9d25f041e473 (diff)
Simplify sorting in landscapes
-rwxr-xr-xsrc/python/test/test_representations.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/python/test/test_representations.py b/src/python/test/test_representations.py
index 948d7804..58caab21 100755
--- a/src/python/test/test_representations.py
+++ b/src/python/test/test_representations.py
@@ -235,10 +235,12 @@ def test_landscape_numeric():
dgm = np.array([[2., 6.], [3., 5.]])
lds_ref = np.array([
0., 0.5, 1., 1.5, 2., 1.5, 1., 0.5, 0., # tent of [2, 6]
- 0., 0., 0., 0.5, 1., 0.5, 0., 0., 0.
+ 0., 0., 0., 0.5, 1., 0.5, 0., 0., 0.,
+ 0., 0., 0., 0., 0., 0., 0., 0., 0.,
+ 0., 0., 0., 0., 0., 0., 0., 0., 0.,
])
lds_ref *= np.sqrt(2)
- lds = Landscape(num_landscapes=2, resolution=9, sample_range=[2., 6.])
+ lds = Landscape(num_landscapes=4, resolution=9, sample_range=[2., 6.])
lds_dgm = lds(dgm)
assert np.all(np.isclose(lds_dgm, lds_ref))