Class ov::Interval#

class Interval#

Interval arithmetic.

An interval is the set of integers from m_min_val through m_max_val. The value s_max acts like infinity. The addition, subtraction, or multiplication of intervals is the smallest interval containing the sums, differences, or products of elements of the two intervals. An empty interval is canonicalized to [s_max, s_max].

Public Functions

Interval() = default#

Interval of everything.

Interval(const Interval &interval) = default#

Copy constructor.

Interval(value_type min_val, value_type max_val)#

Closed interval {x|min_val <= x <= max_val}.

Interval(value_type val)#

Single-valued interval; just contains val.

inline size_type size() const#

The number of elements in the interval. Zero if max < min.

inline bool empty() const#

Returns true if the interval has no elements.

inline value_type get_min_val() const#

the inclusive lower bound of the interval

inline void set_min_val(value_type val)#

Set the inclusive lower bound of the interval.

inline value_type get_max_val() const#

the inclusive upper bound of the interval

inline void set_max_val(value_type val)#

Set the inclusive upper bound of the interval.

inline bool has_upper_bound() const#

True if the upper bound is finite.

bool operator==(const Interval &interval) const#

True if min and max bounds match.

Interval operator+(const Interval &interval) const#

The interval whose elements are a sum of an element from each interval.

Interval &operator+=(const Interval &interval)#

Extend this interval to sums of elements in this interval and interval.

Interval operator-(const Interval &interval) const#

The interval whose elements are a difference of an element from each interval.

Interval &operator-=(const Interval &interval)#

Extend this interval to differences of elements in this interval and interval.

Interval operator*(const Interval &interval) const#

The smallest interval whose elements are a product of an element from each interval.

Interval &operator*=(const Interval &interval)#

Extend this interval to products of elements in this interval and interval.

Interval operator&(const Interval &interval) const#

The interval that is the intersection of this interval and interval.

Interval &operator&=(const Interval &interval)#

Change this interval to only include elements also in interval.

inline bool contains(value_type value) const#

True if this interval includes value.

bool contains(const Interval &interval) const#

True if this interval includes all the values in interval.

Public Static Attributes

static constexpr value_type s_max = {std::numeric_limits<value_type>::max()}#

The value used for no upper bound.