-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Open
Labels
deprecatedItems related to behavior that has been deprecatedItems related to behavior that has been deprecatedscipy.optimize
Milestone
Description
See #15512
def linprog(c, A_ub=None, b_ub=None, A_eq=None, b_eq=None,
bounds=None, method='interior-point', callback=None,
bounds=None, method='highs', callback=None,
options=None, x0=None, integrality=None):
[...]
Notes
-----
This section describes the available solvers that can be selected by the
'method' parameter.
`'highs-ds'` and
`'highs-ipm'` are interfaces to the
HiGHS simplex and interior-point method solvers [13]_, respectively.
`'highs'` (default) chooses between
the two automatically. These are the fastest linear
programming solvers in SciPy, especially for large, sparse problems;
which of these two is faster is problem-dependent.
The other solvers (`'interior-point'`, `'revised simplex'`, and
`'simplex'`) are legacy methods and will be removed in the second release
after SciPy 1.9.0.
Metadata
Metadata
Assignees
Labels
deprecatedItems related to behavior that has been deprecatedItems related to behavior that has been deprecatedscipy.optimize