Skip to content

Commit 6c7e152

Browse files
committed
Remove unwanted params in example
1 parent 234833b commit 6c7e152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/rosenbrock_constrained.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def pbox(x):
2626
logging.basicConfig(level=logging.DEBUG, format='%(message)s')
2727

2828
# Call DFO-LS
29-
soln = dfols.solve(rosenbrock, x0, projections=[pball,pbox], user_params={'dykstra.d_tol': 1e-50})
29+
soln = dfols.solve(rosenbrock, x0, projections=[pball,pbox])
3030

3131
# Display output
3232
print(soln)

0 commit comments

Comments
 (0)