summaryrefslogtreecommitdiff
path: root/test/test_ot.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_ot.py')
-rw-r--r--test/test_ot.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_ot.py b/test/test_ot.py
index dafc03f..45e777a 100644
--- a/test/test_ot.py
+++ b/test/test_ot.py
@@ -137,13 +137,13 @@ def test_lp_barycenter():
def test_free_support_barycenter():
- measures_locations = [np.array([-1.]).reshape((1,1)), np.array([1.]).reshape((1,1))]
+ measures_locations = [np.array([-1.]).reshape((1, 1)), np.array([1.]).reshape((1, 1))]
measures_weights = [np.array([1.]), np.array([1.])]
- X_init = np.array([-12.]).reshape((1,1))
+ X_init = np.array([-12.]).reshape((1, 1))
# obvious barycenter location between two diracs
- bar_locations = np.array([0.]).reshape((1,1))
+ bar_locations = np.array([0.]).reshape((1, 1))
X = ot.lp.free_support_barycenter(measures_locations, measures_weights, X_init)