Uses of Enum Class
org.apache.commons.math.optimization.linear.Relationship
Packages that use Relationship
Package
Description
This package provides optimization algorithms for linear constrained problems.
-
Uses of Relationship in org.apache.commons.math.optimization.linear
Methods in org.apache.commons.math.optimization.linear that return RelationshipModifier and TypeMethodDescriptionLinearConstraint.getRelationship()
Get the relationship between left and right hand sides.Relationship.oppositeRelationship()
Get the relationship obtained when multiplying all coefficients by -1.static Relationship
Returns the enum constant of this class with the specified name.static Relationship[]
Relationship.values()
Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.apache.commons.math.optimization.linear with parameters of type RelationshipModifierConstructorDescriptionLinearConstraint
(double[] lhsCoefficients, double lhsConstant, Relationship relationship, double[] rhsCoefficients, double rhsConstant) Build a constraint involving two linear equations.LinearConstraint
(double[] coefficients, Relationship relationship, double value) Build a constraint involving a single linear equation.LinearConstraint
(RealVector lhsCoefficients, double lhsConstant, Relationship relationship, RealVector rhsCoefficients, double rhsConstant) Build a constraint involving two linear equations.LinearConstraint
(RealVector coefficients, Relationship relationship, double value) Build a constraint involving a single linear equation.