public interface GLPSolver
Modifier and Type | Interface and Description |
---|---|
static class |
GLPSolver.Direction |
Modifier and Type | Method and Description |
---|---|
SolverResult |
solve(GLPSolver.Direction direction,
double[] objective,
ConstraintsSystem constraints)
Solve General Linear Programing Problem (variables are allowed to be negative) by optimizing the 'objective' function
under given 'constraints'.
|
SolverResult solve(GLPSolver.Direction direction, double[] objective, ConstraintsSystem constraints) throws UnboundedSystemException
direction
- optimization directionobjective
- coefficients of the objective functionconstraints
- constraintsUnboundedSystemException
- when constraint system is unbounded and solution cannot be foundCopyright © 2021. All rights reserved.