Uses of Class
org.ojalgo.optimisation.linear.LinearSolver
-
Packages that use LinearSolver Package Description org.ojalgo.optimisation.linear -
-
Uses of LinearSolver in org.ojalgo.optimisation.linear
Subclasses of LinearSolver in org.ojalgo.optimisation.linear Modifier and Type Class Description (package private) class
DualSimplexSolver
Requires all variables to have both lower and upper bounds.(package private) class
PhasedSimplexSolver
First runs the dual algorithm (with a possibly modified objective function) to establish feasibility, and then the primal to reach optimality.(package private) class
PrimalSimplexSolver
Requires the initial basis to be feasible (doesn't do a phase-1).(package private) class
SimplexSolver
Meant to replaceSimplexTableauSolver
.(package private) class
SimplexTableauSolver
Classic simplex tableau solver: Primal algorithm 2-phase All variables assumed >=0, and RHS required to be >=0 Variable bounds other than >=0 handled like constraintsFields in org.ojalgo.optimisation.linear with type parameters of type LinearSolver Modifier and Type Field Description static ExpressionsBasedModel.Integration<LinearSolver>
LinearSolver. INTEGRATION
Methods in org.ojalgo.optimisation.linear that return LinearSolver Modifier and Type Method Description LinearSolver
LinearSolver.ModelIntegration. build(ExpressionsBasedModel model)
protected LinearSolver
LinearSolver.Builder. doBuild(Optimisation.Options options)
static LinearSolver
LinearSolver. newSolver(ExpressionsBasedModel model)
-