Skip to content

Commit 308ce24

Browse files
committed
Type print
1 parent 99c0a24 commit 308ce24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ot/lp/emd_wrap.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def emd_c( np.ndarray[double, ndim=1, mode="c"] a,np.ndarray[double, ndim=1, mod
7575
cdef int resultSolver = EMD_wrap(n1,n2,<double*> a.data,<double*> b.data,<double*> M.data,<double*> G.data,<double*> &cost, numItermax)
7676
if resultSolver != OPTIMAL:
7777
if resultSolver == INFEASIBLE:
78-
print("Problem infeasible. Try to inscrease numItermax.")
78+
print("Problem infeasible. Try to increase numItermax.")
7979
elif resultSolver == UNBOUNDED:
8080
print("Problem unbounded")
8181

0 commit comments

Comments
 (0)