SciPy

scipy.optimize.show_options

scipy.optimize.show_options(solver=None, method=None, disp=True)[source]

Show documentation for additional options of optimization solvers.

These are method-specific options that can be supplied through the options dict.

Parameters
solverstr

Type of optimization solver. One of ‘minimize’, ‘minimize_scalar’, ‘root’, or ‘linprog’.

methodstr, optional

If not given, shows all methods of the specified solver. Otherwise, show only the options for the specified method. Valid values corresponds to methods’ names of respective solver (e.g. ‘BFGS’ for ‘minimize’).

dispbool, optional

Whether to print the result rather than returning it.

Returns
text

Either None (for disp=True) or the text string (disp=False)

Notes

The solver-specific methods are:

scipy.optimize.minimize

scipy.optimize.root

scipy.optimize.minimize_scalar

scipy.optimize.linprog

Previous topic

Optimization and Root Finding (scipy.optimize)

Next topic

scipy.optimize.OptimizeResult