summaryrefslogtreecommitdiff
path: root/test/test_gromov.py
diff options
context:
space:
mode:
authorNicolas Courty <Nico@MacBook-Pro-de-Nicolas.local>2017-09-01 11:22:13 +0200
committerNicolas Courty <Nico@MacBook-Pro-de-Nicolas.local>2017-09-01 11:22:13 +0200
commit64a5d3c4e49688c13d236baf9ed23420070024d6 (patch)
treeffe5db073c07e579b26ead6a8ebcb0ff78ce6a33 /test/test_gromov.py
parentab6ed1df93cd78bb7f1a54282103d4d830e68bcb (diff)
parent986f46ddde3ce2f550cb56f66620df377326423d (diff)
docstrings and naming
Diffstat (limited to 'test/test_gromov.py')
-rw-r--r--test/test_gromov.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test_gromov.py b/test/test_gromov.py
index c26d898..a6c89f2 100644
--- a/test/test_gromov.py
+++ b/test/test_gromov.py
@@ -10,11 +10,16 @@ import ot
def test_gromov():
+<<<<<<< HEAD
n_samples = 50 # nb samples
+=======
+ n = 50 # nb samples
+>>>>>>> 986f46ddde3ce2f550cb56f66620df377326423d
mu_s = np.array([0, 0])
cov_s = np.array([[1, 0], [0, 1]])
+<<<<<<< HEAD
xs = ot.datasets.get_2D_samples_gauss(n_samples, mu_s, cov_s)
xt = [xs[n_samples - (i + 1)] for i in range(n_samples)]
@@ -22,6 +27,15 @@ def test_gromov():
p = ot.unif(n_samples)
q = ot.unif(n_samples)
+=======
+ xs = ot.datasets.get_2D_samples_gauss(n, mu_s, cov_s)
+
+ xt = [xs[n - (i + 1)] for i in range(n)]
+ xt = np.array(xt)
+
+ p = ot.unif(n)
+ q = ot.unif(n)
+>>>>>>> 986f46ddde3ce2f550cb56f66620df377326423d
C1 = ot.dist(xs, xs)
C2 = ot.dist(xt, xt)