Uses of Class
org.drip.optimization.simplex.LinearExpression
Package | Description |
---|---|
org.drip.optimization.simplex |
Rd to R1 Simplex Scheme
|
-
Uses of LinearExpression in org.drip.optimization.simplex
Methods in org.drip.optimization.simplex that return LinearExpression Modifier and Type Method Description LinearExpression
StandardConstraint. lhs()
Retrieve the Constraint LHSLinearExpression
StandardForm. objectiveFunction()
Retrieve the Simplex Objective FunctionLinearExpression
StandardFormBuilder. objectiveFunction()
Retrieve the Objective FunctionLinearExpression
DantzigSolver. optimize(StandardForm canonicalForm)
Construct the Optimal Solution to the SimplexMethods in org.drip.optimization.simplex with parameters of type LinearExpression Modifier and Type Method Description static StandardConstraint
StandardConstraint. EQ(LinearExpression lhs, double rhs)
Construct an Equality Standard Constraintstatic StandardConstraint
StandardConstraint. GT(LinearExpression lhs, double rhs)
Construct a Greater-Than Standard Constraintstatic StandardConstraint
StandardConstraint. LT(LinearExpression lhs, double rhs)
Construct a Less-Than Standard ConstraintConstructors in org.drip.optimization.simplex with parameters of type LinearExpression Constructor Description StandardConstraint(LinearExpression lhs, double rhs, int type)
StandardConstraint ConstructorStandardForm(LinearExpression objectiveFunction, StandardPolytope constraintPolytope)
StandardForm ConstructorStandardFormBuilder(int unrestrictedVariableCount, LinearExpression objectiveFunction)
StandardFormBuilder Constructor