Constructor that creates the finite interval with the lower bound equal to lower and the upper bound equal to upper . The boundary tolerance is set to the value tolerance.
Public Sub New(
lower As double,
upper As double,
tolerance As double
)
public Interval(
double lower,
double upper,
double tolerance
);
| Parameters | Description |
|---|---|
| double lower | Lower bound |
| double upper | Upper bound |
| double tolerance | Input tolerance value |