summaryrefslogtreecommitdiff
path: root/test/test_ot.py
diff options
context:
space:
mode:
authorVivien Seguy <vivienseguy@h40.57.229.10.1016746.vlan.kuins.net>2018-07-09 16:58:00 +0900
committerVivien Seguy <vivienseguy@h40.57.229.10.1016746.vlan.kuins.net>2018-07-09 16:58:00 +0900
commit08e5c0a91bc9b4afcd375109c08a14bcb0b1bd51 (patch)
treefb9f81a6d8f0b8c6134157a5833cd3db3ea044ce /test/test_ot.py
parent46712790c1276f1ecb3496362a8117e153782ede (diff)
add test free support barycenter algorithm + cleaning
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)