You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several Simplex pivot rules, and GILP only implements a select few. One pivot rule that is yet to be implemented is max-in-out. I recommend reading the paper to learn more. The majority of pivot rule logic currently lives within the _simplex_iteration function here. You will need to add max-out-in to the list of available pivot rules here. It could also be helpful to refactor the code to decouple pivot rule logic and/or add an example using this pivot rule to the documentation.
The text was updated successfully, but these errors were encountered:
There are several Simplex pivot rules, and GILP only implements a select few. One pivot rule that is yet to be implemented is max-in-out. I recommend reading the paper to learn more. The majority of pivot rule logic currently lives within the
_simplex_iteration
function here. You will need to addmax-out-in
to the list of available pivot rules here. It could also be helpful to refactor the code to decouple pivot rule logic and/or add an example using this pivot rule to the documentation.The text was updated successfully, but these errors were encountered: