47 #ifndef TEUCHOS_RANGE1D_HPP
48 #define TEUCHOS_RANGE1D_HPP
202 return !(rng1 == rng2);
289 : lbound_(0), ubound_(std::numeric_limits<
Ordinal>::max()-1)
294 : lbound_(0), ubound_(-2)
300 : lbound_(lbound_in), ubound_(ubound_in)
307 return (
lbound_ == 0 &&
ubound_ == std::numeric_limits<Ordinal>::max()-1);
352 (void)lbound_in; (void)ubound_in;
361 #endif // end TEUCHOS_RANGE1D_HPP
bool in_range(Ordinal i) const
Return true if the index is in range.
void assert_valid_range(Ordinal lbound, Ordinal ubound) const
Subregion Index Range Class.
#define TEUCHOS_ASSERT_INEQUALITY(val1, comp, val2)
This macro is checks that an inequality between two numbers is satisified and if not then throws a go...
bool operator!=(const Range1D &rng1, const Range1D &rng2)
rng1 == rng2.
Ordinal ubound() const
Return upper bound of the range.
Range1D()
Construct a full range.
bool full_range() const
Returns true if the range represents the entire region.
std::ostream & operator<<(std::ostream &os, BigUInt< n > a)
TEUCHOS_ORDINAL_TYPE Teuchos_Ordinal
Range1D operator-(const Range1D &rng_rhs, Range1D::Ordinal i)
rng_lhs = rng_rhs - i.
#define TEUCHOSCORE_LIB_DLL_EXPORT
static const Range1D Invalid
Used for Range1D(INVALID)
Teuchos_Ordinal Ordinal
Deprecated.
Range1D & operator+=(Ordinal incr)
Increment the range by a constant.
Range1D full_range(const Range1D &rng, Range1D::Ordinal lbound, Range1D::Ordinal ubound)
Return a bounded index range from a potentially unbounded index range.
Ordinal lbound() const
Return lower bound of the range.
Range1D operator+(const Range1D &rng_rhs, Range1D::Ordinal i)
rng_lhs = rng_rhs + i.
bool operator==(const Range1D &rng1, const Range1D &rng2)
rng1 == rng2.
Ordinal size() const
Return the size of the range (ubound() - lbound() + 1)
Range1D & operator-=(Ordinal incr)
Deincrement the range by a constant.
Defines basic traits for the scalar field type.
Range1D operator+(Range1D::Ordinal i, const Range1D &rng_rhs)
rng_lhs = i + rng_rhs.
Teuchos_Ordinal Index
Deprecated.