summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-06-21 18:27:42 +0200
committerRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-06-21 18:27:42 +0200
commit9e1d74f44473deb1f4766329bb0d1c8af4dfdd73 (patch)
treefc5cdc506400bf635ea88a3b21eac3e24d60f620 /test
parent67d3bd4bf0f593aa611d6bf09bbd3a9c883299ba (diff)
Started documenting
Diffstat (limited to 'test')
-rw-r--r--test/test_ot.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_ot.py b/test/test_ot.py
index 2a2e0a5..6d6ea26 100644
--- a/test/test_ot.py
+++ b/test/test_ot.py
@@ -59,10 +59,10 @@ def test_emd_1d_emd2_1d():
G, log = ot.emd([], [], M, log=True)
wass = log["cost"]
- G_1d, log = ot.emd_1d([], [], u, v, metric='sqeuclidean', log=True)
+ G_1d, log = ot.emd_1d(u, v, [], [], metric='sqeuclidean', log=True)
wass1d = log["cost"]
- wass1d_emd2 = ot.emd2_1d([], [], u, v, metric='sqeuclidean', log=False)
- wass1d_euc = ot.emd2_1d([], [], u, v, metric='euclidean', log=False)
+ wass1d_emd2 = ot.emd2_1d(u, v, [], [], metric='sqeuclidean', log=False)
+ wass1d_euc = ot.emd2_1d(u, v, [], [], metric='euclidean', log=False)
# check loss is similar
np.testing.assert_allclose(wass, wass1d)
@@ -82,7 +82,7 @@ def test_emd_1d_emd2_1d():
# check AssertionError is raised if called on non 1d arrays
u = np.random.randn(n, 2)
v = np.random.randn(m, 2)
- np.testing.assert_raises(AssertionError, ot.emd_1d, [], [], u, v)
+ np.testing.assert_raises(AssertionError, ot.emd_1d, u, v, [], [])
def test_emd_empty():