Uses of Class
org.ojalgo.optimisation.linear.SimplexStore
-
Packages that use SimplexStore Package Description org.ojalgo.optimisation.linear -
-
Uses of SimplexStore in org.ojalgo.optimisation.linear
Subclasses of SimplexStore in org.ojalgo.optimisation.linear Modifier and Type Class Description (package private) class
DenseTableau
(package private) class
RevisedStore
(package private) class
SimplexTableau
(package private) class
SparseTableau
Fields in org.ojalgo.optimisation.linear declared as SimplexStore Modifier and Type Field Description private SimplexStore
SimplexSolver. mySimplex
Methods in org.ojalgo.optimisation.linear with type parameters of type SimplexStore Modifier and Type Method Description (package private) static <S extends SimplexStore>
SSimplexSolver. build(ExpressionsBasedModel model, java.util.function.Function<LinearStructure,S> factory)
Methods in org.ojalgo.optimisation.linear that return SimplexStore Modifier and Type Method Description private SimplexStore
SimplexStore. basis(int index)
(package private) SimplexStore
SimplexStore. lower(int index)
(package private) SimplexStore
LinearSolver.Builder. newSimplexStore(java.util.function.Function<LinearStructure,SimplexStore> storeFactory, int... basis)
(package private) SimplexStore
SimplexStore. unbounded(int index)
(package private) SimplexStore
SimplexStore. upper(int index)
Methods in org.ojalgo.optimisation.linear that return types with arguments of type SimplexStore Modifier and Type Method Description (package private) static java.util.function.Function<LinearStructure,SimplexStore>
SimplexStore. newStoreFactory(Optimisation.Options options)
Methods in org.ojalgo.optimisation.linear with parameters of type SimplexStore Modifier and Type Method Description (package private) void
DualSimplexSolver. setup(SimplexStore simplex)
(package private) void
PhasedSimplexSolver. setup(SimplexStore simplex)
(package private) void
PrimalSimplexSolver. setup(SimplexStore simplex)
(package private) abstract void
SimplexSolver. setup(SimplexStore simplex)
Determine if non-basic variables are at their lower or upper bound (or if they are unbounded) Shift ranges/bounds so that (one of) the bound(s) is at zero Assumes that the ranges/bounds of basic variables are already defined this way.Method parameters in org.ojalgo.optimisation.linear with type arguments of type SimplexStore Modifier and Type Method Description (package private) SimplexStore
LinearSolver.Builder. newSimplexStore(java.util.function.Function<LinearStructure,SimplexStore> storeFactory, int... basis)
private <S extends SimplexSolver>
SSimplexStore. newSolver(java.util.function.BiFunction<Optimisation.Options,SimplexStore,S> constructor, Optimisation.Options options, int... basis)
Constructors in org.ojalgo.optimisation.linear with parameters of type SimplexStore Constructor Description DualSimplexSolver(Optimisation.Options solverOptions, SimplexStore simplexStore)
IterDescr(SimplexStore simplex)
PhasedSimplexSolver(Optimisation.Options solverOptions, SimplexStore simplexStore)
PrimalSimplexSolver(Optimisation.Options solverOptions, SimplexStore simplexStore)
SimplexSolver(Optimisation.Options solverOptions, SimplexStore simplexStore)
-