Expand description
Interval arithmetic library
Structs§
- Interval
- The
Intervaltype represents a closed interval used for computing reliable bounds for mathematical expressions.
Enums§
- Nullable
Interval - An Interval that also tracks null status using a boolean interval.
Functions§
- apply_
operator - Applies the given binary operator the
lhsandrhsarguments. - cardinality_
ratio - This function computes the selectivity of an operation by computing the
cardinality ratio of the given input/output intervals. If this can not be
calculated for some reason, it returns
1.0meaning fully selective (no filtering). - satisfy_
greater - This function updates the given intervals by enforcing (i.e. propagating)
the inequality
left > right(or theleft >= rightinequality, ifstrictistrue).