Changes between Initial Version and Version 1 of Ticket #18804
- Timestamp:
- 06/28/15 19:16:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18804
- Property Keywords lp added
-
Ticket #18804 – Description
initial v1 2 2 3 3 This ticket creates: 4 - a new class, `LPBackendDictionary` (inheriting from `LPAbstractDictionary` , would avoid InteractiveLPand rather be tied directly to the MILP backend, using tableau data query functions such as `getBInvArow` etc.4 - a new class, `LPBackendDictionary` (inheriting from `LPAbstractDictionary`), would avoid going through `InteractiveLP` and rather be tied directly to the MILP backend, using tableau data query functions such as `getBInvArow` etc. 5 5 (It would be in a separate file perhaps `interactive_backend_dictionary.py`, so as not to add clutter to the didactical implementation in `interactive_simplex_method.py`.) 6 6 7 #18732 add sthe missing functions for retrieving the data of the dictionary (for the GLPK backend) such as `getBInvARow` etc. (#18763 does the same for the COIN backend.)8 #18733 provides corresponding `MixedIntegerLinearProgram` methods.7 #18732 added most of the missing functions for retrieving the data of the dictionary (for the GLPK backend) such as `getBInvARow` etc. (#18763 does the same for the COIN backend.) 8 #18733 provides a common interface and corresponding `MixedIntegerLinearProgram` methods. 9 9 10 10 Doctests could then test that: