summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_bregman.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_bregman.py b/test/test_bregman.py
index bc8f6ae..52e9fb2 100644
--- a/test/test_bregman.py
+++ b/test/test_bregman.py
@@ -338,6 +338,7 @@ def test_implemented_methods():
with pytest.raises(ValueError):
ot.bregman.sinkhorn2(a, b, M, epsilon, method=method)
+
def test_screenkhorn():
# test screenkhorn
rng = np.random.RandomState(0)
@@ -347,4 +348,4 @@ def test_screenkhorn():
x = rng.randn(n, 2)
M = ot.dist(x, x)
- G_screen = ot.bregman.screenkhorn(a, b, M, 1e-2, uniform=True, verbose=True) \ No newline at end of file
+ G_screen = ot.bregman.screenkhorn(a, b, M, 1e-2, uniform=True, verbose=True)