Package | Description |
---|---|
org.opentrafficsim.base.parameters.constraint |
Constraints of parameters.
|
Modifier and Type | Field and Description |
---|---|
static DualBound<Number> |
DualBound.UNITINTERVAL
Standard dual bound on the unit interval [0...1].
|
Modifier and Type | Method and Description |
---|---|
static DualBound<Double> |
DualBound.closed(double lowerBound,
double upperBound)
Creates a dual bound including the bounds;
lowerBound <= value <= upperBound . |
static <T extends AbstractDoubleScalar<?,?>> |
DualBound.closed(T lowerBound,
T upperBound)
Creates a dual bound including the bounds;
lowerBound <= value <= upperBound . |
static DualBound<Double> |
DualBound.leftClosedRightOpen(double lowerBound,
double upperBound)
Creates a dual bound including the lower bound and excluding the upper bound;
lowerBound <= value < upperBound . |
static <T extends AbstractDoubleScalar<?,?>> |
DualBound.leftClosedRightOpen(T lowerBound,
T upperBound)
Creates a dual bound including the lower bound and excluding the upper bound;
lowerBound <= value < upperBound . |
static DualBound<Double> |
DualBound.leftOpenRightClosed(double lowerBound,
double upperBound)
Creates a dual bound excluding the lower bound and including the upper bound;
lowerBound < value <= upperBound . |
static <T extends AbstractDoubleScalar<?,?>> |
DualBound.leftOpenRightClosed(T lowerBound,
T upperBound)
Creates a dual bound excluding the lower bound and including the upper bound;
lowerBound < value <= upperBound . |
static DualBound<Double> |
DualBound.open(double lowerBound,
double upperBound)
Creates a dual bound excluding the bounds;
lowerBound < value < upperBound . |
static <T extends AbstractDoubleScalar<?,?>> |
DualBound.open(T lowerBound,
T upperBound)
Creates a dual bound excluding the bounds;
lowerBound < value < upperBound . |
Copyright © 2014–2019 Delft University of Technology. All rights reserved.