summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/test_ot.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_ot.py b/test/test_ot.py
index 8602022..507d188 100644
--- a/test/test_ot.py
+++ b/test/test_ot.py
@@ -132,9 +132,12 @@ def test_emd_sparse():
Gs = ot.emd([], [], M, dense=False)
+ ws = ot.emd2([], [], M, dense=False)
+
# check G is the same
np.testing.assert_allclose(G, Gs.todense())
- # check constraints
+ # check value
+ np.testing.assert_allclose(Gs.multiply(M).sum(), ws, rtol=1e-6)
def test_emd2_multi():