summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Rolet <antoine.rolet@gmail.com>2017-09-05 15:10:44 +0900
committerAntoine Rolet <antoine.rolet@gmail.com>2017-09-05 15:10:44 +0900
commit185eb3e2ef34b5ce6b8f90a28a5bcc78432b7fd3 (patch)
tree2a2260921b0fc91611b956a4e485d86a8eb05777
parentc1980a414c879dd1bc1d8904fd43426326741385 (diff)
Removed prints
-rw-r--r--ot/lp/emd_wrap.pyx2
1 files changed, 0 insertions, 2 deletions
diff --git a/ot/lp/emd_wrap.pyx b/ot/lp/emd_wrap.pyx
index 435a270..4febb32 100644
--- a/ot/lp/emd_wrap.pyx
+++ b/ot/lp/emd_wrap.pyx
@@ -68,8 +68,6 @@ def emd_c( np.ndarray[double, ndim=1, mode="c"] a,np.ndarray[double, ndim=1, mod
if not len(b):
b=np.ones((n2,))/n2
- print alpha.size
- print beta.size
# calling the function
EMD_wrap(n1,n2,<double*> a.data,<double*> b.data,<double*> M.data,<double*> G.data,
<double*> alpha.data, <double*> beta.data, <double*> &cost, maxiter)