Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Refactor linprog_solve() into a proper function | Bjoern Brandenburg | 2013-02-12 |
| | |||
* | Switch to CPX (CPLEX C API) as default LP solver | Bjoern Brandenburg | 2013-02-12 |
| | | | | Much faster than the alternatives, so use it when available. | ||
* | Add GLPK Integration | Bjoern Brandenburg | 2013-02-12 |
| | | | | | Add a bridge to the GLPK library. Availability is auto-discovered by the build system. Most of the code is solver-agnostic. | ||
* | Add simple C++ linear program representation | Bjoern Brandenburg | 2013-02-12 |
- Constraints are expressed as lists of terms. - Linear programs consist of only equalities and less-than-or-equal constraints. - Solvers hide behind an abstract solution class that can evaluate linear expressions. |