Class LowerBoundConstraints
- java.lang.Object
-
- dev.nm.solver.multivariate.constrained.constraint.linear.LinearConstraints
-
- dev.nm.solver.multivariate.constrained.constraint.linear.LinearGreaterThanConstraints
-
- dev.nm.solver.multivariate.constrained.constraint.linear.LowerBoundConstraints
-
- All Implemented Interfaces:
Constraints
,GreaterThanConstraints
- Direct Known Subclasses:
NonNegativityConstraints
public class LowerBoundConstraints extends LinearGreaterThanConstraints
This is a lower bound constraints such that for all xi's,xi ≥ b
-
-
Constructor Summary
Constructors Constructor Description LowerBoundConstraints(RealScalarFunction f, double lower)
Construct a lower bound constraints for all variables in a function.
-
Method Summary
-
Methods inherited from class dev.nm.solver.multivariate.constrained.constraint.linear.LinearGreaterThanConstraints
getFeasibleInitialPoint, getFeasibleInitialPoint, toLessThanConstraints
-
Methods inherited from class dev.nm.solver.multivariate.constrained.constraint.linear.LinearConstraints
A, b, concat, dimension, getActiveConstraints, getActiveRows, getConstraints, size, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface dev.nm.solver.multivariate.constrained.constraint.Constraints
dimension, getConstraints, size
-
-
-
-
Constructor Detail
-
LowerBoundConstraints
public LowerBoundConstraints(RealScalarFunction f, double lower)
Construct a lower bound constraints for all variables in a function.- Parameters:
f
- a functionlower
- the lower bound
-
-