We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c0a24 commit 308ce24Copy full SHA for 308ce24
ot/lp/emd_wrap.pyx
@@ -75,7 +75,7 @@ def emd_c( np.ndarray[double, ndim=1, mode="c"] a,np.ndarray[double, ndim=1, mod
75
cdef int resultSolver = EMD_wrap(n1,n2,<double*> a.data,<double*> b.data,<double*> M.data,<double*> G.data,<double*> &cost, numItermax)
76
if resultSolver != OPTIMAL:
77
if resultSolver == INFEASIBLE:
78
- print("Problem infeasible. Try to inscrease numItermax.")
+ print("Problem infeasible. Try to increase numItermax.")
79
elif resultSolver == UNBOUNDED:
80
print("Problem unbounded")
81
0 commit comments