Uses of Enum
org.apache.commons.math3.optim.linear.Relationship
Packages that use Relationship
Package
Description
Optimization algorithms for linear constrained problems.
-
Uses of Relationship in org.apache.commons.math3.optim.linear
Subclasses with type arguments of type Relationship in org.apache.commons.math3.optim.linearModifier and TypeClassDescriptionenumTypes of relationships between two cells in a SolverLinearConstraint.Fields in org.apache.commons.math3.optim.linear declared as RelationshipModifier and TypeFieldDescriptionprivate final RelationshipLinearConstraint.relationshipRelationship between left and right hand sides (=, <=, >=).Methods in org.apache.commons.math3.optim.linear that return RelationshipModifier and TypeMethodDescriptionLinearConstraint.getRelationship()Gets the relationship between left and right hand sides.Relationship.oppositeRelationship()Gets the relationship obtained when multiplying all coefficients by -1.static RelationshipReturns the enum constant of this type with the specified name.static Relationship[]Relationship.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.math3.optim.linear with parameters of type RelationshipModifier and TypeMethodDescriptionprivate intSimplexTableau.getConstraintTypeCounts(Relationship relationship) Get a count of constraints corresponding to a specified relationship.Constructors in org.apache.commons.math3.optim.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.