Skip to content

Commit 32eae63

Browse files
committed
minor: removed ftol from numpy Simplex parameters
1 parent b725f5c commit 32eae63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproximal/proximal/Simplex.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def Simplex(n, radius, dims=None, axis=-1, maxiter=100,
185185
maxiter : :obj:`int`, optional
186186
Maximum number of iterations used by bisection
187187
ftol : :obj:`float`, optional
188-
Function tolerance in bisection (only with ``engine='numba'``)
188+
Function tolerance in bisection (only with ``engine='numba'`` or ``engine='cuda'``)
189189
xtol : :obj:`float`, optional
190190
Solution absolute tolerance in bisection
191191
call : :obj:`bool`, optional
@@ -224,5 +224,5 @@ def Simplex(n, radius, dims=None, axis=-1, maxiter=100,
224224
if engine == 'numba' and jit is None:
225225
logging.warning(jit_message)
226226
s = _Simplex(n, radius, dims=dims, axis=axis,
227-
maxiter=maxiter, ftol=ftol, xtol=xtol, call=call)
227+
maxiter=maxiter, xtol=xtol, call=call)
228228
return s

0 commit comments

Comments
 (0)