Mathematical Programming System (MPS) format parser for Golang. This package reads a plain/gzip mps file and returns the linear programming problem in standard form represented as the following matrices :
- A, constraints coefficient matrix.
- b, column vector containing the RHS of constraints.
- c, column vector containing objective function coefficients.
It also returns the functions that map from variables used in the standard form to the the actual variables of the problem.
This package depends on go.matrix