Uses of Class
org.ojalgo.structure.Primitive1D
-
Packages that use Primitive1D Package Description org.ojalgo.optimisation.linear org.ojalgo.structure -
-
Uses of Primitive1D in org.ojalgo.optimisation.linear
Fields in org.ojalgo.optimisation.linear declared as Primitive1D Modifier and Type Field Description private Primitive1D
SimplexTableau. myConstraintsRHS
private Primitive1D
SimplexTableau. myObjective
Methods in org.ojalgo.optimisation.linear that return Primitive1D Modifier and Type Method Description (package private) Primitive1D
SimplexTableau. constraintsRHS()
The area of the tableau corresponding to the constraints' RHS.(package private) Primitive1D
DenseTableau. newConstraintsRHS()
(package private) abstract Primitive1D
SimplexTableau. newConstraintsRHS()
(package private) Primitive1D
SparseTableau. newConstraintsRHS()
(package private) Primitive1D
DenseTableau. newObjective()
(package private) abstract Primitive1D
SimplexTableau. newObjective()
(package private) Primitive1D
SparseTableau. newObjective()
(package private) Primitive1D
SimplexTableau. objective()
The area of the tableau corresponding to the objective function.(package private) Primitive1D
SimplexTableau. sliceBodyColumn(int col)
(package private) Primitive1D
RevisedStore. sliceBodyRow(int i)
(package private) abstract Primitive1D
SimplexStore. sliceBodyRow(int row)
(package private) Primitive1D
SimplexTableau. sliceBodyRow(int row)
(package private) Primitive1D
SimplexTableau. sliceConstraintsRHS()
(package private) Primitive1D
RevisedStore. sliceDualVariables()
(package private) abstract Primitive1D
SimplexStore. sliceDualVariables()
(package private) Primitive1D
SimplexTableau. sliceDualVariables()
(package private) Primitive1D
SimplexTableau. sliceTableauColumn(int col)
(package private) Primitive1D
SimplexTableau. sliceTableauRow(int row)
Methods in org.ojalgo.optimisation.linear with parameters of type Primitive1D Modifier and Type Method Description (package private) static Equation
TableauCutGenerator. doGomory(Primitive1D body, int index, double rhs, double fractionality)
Calculates a Gomory cut – all variables must be integer.(package private) static Equation
TableauCutGenerator. doGomoryMixedInteger(Primitive1D body, int index, double rhs, boolean[] integer)
Assumes all variables positive [0,∞).(package private) static Equation
TableauCutGenerator. doGomoryMixedInteger(Primitive1D body, int index, double rhs, double fractionality, int[] excluded, boolean[] integer)
(package private) static Equation
TableauCutGenerator. doGomoryMixedInteger(Primitive1D body, int index, double rhs, double fractionality, int[] excluded, boolean[] integers, double[] lowers, double[] uppers, double[] shifts)
Calculates a Gomory Mixed Integer (GMI) cut. -
Uses of Primitive1D in org.ojalgo.structure
Subclasses of Primitive1D in org.ojalgo.structure Modifier and Type Class Description (package private) static class
Primitive1D.Simple
(package private) static class
Primitive1D.Wrapper
Fields in org.ojalgo.structure declared as Primitive1D Modifier and Type Field Description static Primitive1D
Primitive1D. EMPTY
Methods in org.ojalgo.structure that return Primitive1D Modifier and Type Method Description static Primitive1D
Primitive1D. newInstance(int size)
static Primitive1D
Primitive1D. of(double... values)
static Primitive1D
Primitive1D. wrap(Structure1D delegate)
-