/usr/include/trilinos/Teuchos_Range1D.hpp is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | // @HEADER
// ***********************************************************************
//
// Teuchos: Common Tools Package
// Copyright (2004) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ***********************************************************************
// @HEADER
// Range1D class used for representing a range of positive integers.
// Its primary usage is in accessing vectors and matrices by subregions
// of rows and columns
//
#ifndef TEUCHOS_RANGE1D_HPP
#define TEUCHOS_RANGE1D_HPP
/*! \file Teuchos_Range1D.hpp
\brief .
*/
#include "Teuchos_ScalarTraits.hpp"
#include "Teuchos_TestForException.hpp"
namespace Teuchos {
/** \brief Subregion Index Range Class.
*
* The class <tt>%Range1D</tt> abstracts a 1-D, zero-based, range of indexes.
* It is used to index into vectors and matrices and return subregions of them
* respectively.
*
* Constructing using <tt>Range1D()</tt> yields a range that represents the
* entire dimension of an object <tt>[0, max_ubound-1]</tt> (an entire std::vector,
* all the rows in a matrix, or all the columns in a matrix etc.).
*
* Constructing using <tt>\ref Range1D::Range1D "Range1D(INVALID)"</tt> yields
* an invalid range <tt>[0,-1]</tt> with <tt>size() == 0</tt>. In fact the
* condition <tt>size()==0</tt> is the determining flag that a range is not
* valid. Once constructed with <tt>Range1D(INVALID)</tt>, a
* <tt>%Range1D</tt> object can pass through many other operations that may
* change <tt>%lbound()</tt> and <tt>%ubound()</tt> but will never change
* <tt>size()==0</tt>.
*
* Constructing using <tt>\ref Range1D::Range1D "Range1D(lbound,ubound)"</tt>
* yields a finite-dimensional zero-based range. The validity of constructed
* range will only be checked if <tt>TEUCHOS_DEBUG</tt> is defined.
*
* There are many \ref Range1D_funcs_grp "non-member functions" that can be
* used with <tt>%Range1D</tt> objects.
*
* The default copy constructor and assignment operator functions are allowed
* since they have the correct semantics.
*/
class Range1D {
public:
/** \brief Deprecated. */
typedef Teuchos_Ordinal Index;
/** \brief Deprecated. */
typedef Teuchos_Ordinal Ordinal;
/** \brief . */
enum EInvalidRange { INVALID };
/** \brief Used for Range1D(INVALID) */
static const Range1D Invalid;
/** \brief Constructs a range representing the entire range.
*
* Postconditions: <ul>
* <li> <tt>this->full_range()==true</tt>
* <li> <tt>this->size()</tt> is a very large number
* <li> <tt>this->lbound()==0</tt>
* <li> <tt>this->ubound()</tt> is a very large number
* </ul>
*/
inline Range1D();
/** Constructs an invalid (zero) range.
*
* Postconditions: <ul>
* <li> <tt>this->full_range() == false</tt>
* <li> <tt>this->size() == 0</tt>
* <li> <tt>this->lbound()==0</tt>
* <li> <tt>this->ubound()==-1</tt>
* </ul>
*/
inline Range1D( EInvalidRange );
/** \brief Constructs a range that represents the range <tt>[lbound, ubound]</tt>.
*
* Preconditions: <ul>
* <li> <tt>lbound >= 0</tt> (throw \c range_error)
* <li> <tt>lbound <= ubound</tt> (throw \c range_error)
* </ul>
*
* Postconditions: <ul>
* <li> <tt>this->full_range() == false</tt>
* <li> <tt>this->size() == ubound - lbound + 1</tt>
* <li> <tt>this->lbound() == lbound</tt>
* <li> <tt>this->ubound() == ubound</tt>
* </ul>
*/
inline Range1D(Ordinal lbound, Ordinal ubound);
/** Returns \c true if the range represents the entire region (constructed
* from \c Range1D())
*/
inline bool full_range() const;
/** \brief Return lower bound of the range */
inline Ordinal lbound() const;
/** \brief Return upper bound of the range */
inline Ordinal ubound() const;
/** \brief Return the size of the range (<tt>ubound() - lbound() + 1</tt>) */
inline Ordinal size() const;
/** \brief Return true if the index is in range */
inline bool in_range(Ordinal i) const;
/** \brief Increment the range by a constant */
inline Range1D& operator+=( Ordinal incr );
/** \brief Deincrement the range by a constant */
inline Range1D& operator-=( Ordinal incr );
private:
Ordinal lbound_;
Ordinal ubound_; // = INT_MAX-1 flag for entire range
// lbound == ubound == 0 flag for invalid range.
// assert that the range is valid
inline void assert_valid_range(Ordinal lbound, Ordinal ubound) const;
}; // end class Range1D
/** \brief rng1 == rng2.
*
* @return Returns <tt>rng1.lbound() == rng2.ubound() && rng1.ubound() == rng2.ubound()</tt>.
*
* \relates Range1D
*/
inline bool operator==(const Range1D& rng1, const Range1D& rng2 )
{
return rng1.lbound() == rng2.lbound() && rng1.ubound() == rng2.ubound();
}
/** \brief rng_lhs = rng_rhs + i.
*
* Increments the upper and lower bounds by a constant.
*
* Postcondition: <ul>
* <li> <tt>rng_lhs.lbound() == rng_rhs.lbound() + i</tt>
* <li> <tt>rng_lhs.ubound() == rng_rhs.ubound() + i</tt>
* </ul>
*
* \relates Range1D
*/
inline Range1D operator+(const Range1D &rng_rhs, Range1D::Ordinal i)
{
return Range1D(i+rng_rhs.lbound(), i+rng_rhs.ubound());
}
/** \brief rng_lhs = i + rng_rhs.
*
* Increments the upper and lower bounds by a constant.
*
* Postcondition: <ul>
* <li> <tt>rng_lhs.lbound() == i + rng_rhs.lbound()</tt>
* <li> <tt>rng_lhs.ubound() == i + rng_rhs.ubound()</tt>
* </ul>
*
* \relates Range1D
*/
inline Range1D operator+(Range1D::Ordinal i, const Range1D &rng_rhs)
{
return Range1D(i+rng_rhs.lbound(), i+rng_rhs.ubound());
}
/** \brief rng_lhs = rng_rhs - i.
*
* Deincrements the upper and lower bounds by a constant.
*
* Postcondition: <ul>
* <li> <tt>rng_lhs.lbound() == rng_rhs.lbound() - i</tt>
* <li> <tt>rng_lhs.ubound() == rng_rhs.ubound() - i</tt>
* </ul>
*
* \relates Range1D
*/
inline Range1D operator-(const Range1D &rng_rhs, Range1D::Ordinal i)
{
return Range1D(rng_rhs.lbound()-i, rng_rhs.ubound()-i);
}
/** \brief Return a bounded index range from a potentially unbounded index
* range.
*
* Return a index range of lbound to ubound if rng.full_range() == true
* , otherwise just return a copy of rng.
*
* Postconditions: <ul>
* <li> [<tt>rng.full_range() == true</tt>] <tt>return.lbound() == lbound</tt>
* <li> [<tt>rng.full_range() == true</tt>] <tt>return.ubound() == ubound</tt>
* <li> [<tt>rng.full_range() == false</tt>] <tt>return.lbound() == rng.lbound()</tt>
* <li> [<tt>rng.full_range() == false</tt>] <tt>return.ubound() == rng.ubound()</tt>
* </ul>
*
* \relates Range1D
*/
inline Range1D full_range(const Range1D &rng, Range1D::Ordinal lbound, Range1D::Ordinal ubound)
{ return rng.full_range() ? Range1D(lbound,ubound) : rng; }
// //////////////////////////////////////////////////////////
// Inline members
inline
Range1D::Range1D()
: lbound_(0), ubound_(INT_MAX-1)
{}
inline
Range1D::Range1D( EInvalidRange )
: lbound_(0), ubound_(-1)
{}
inline
Range1D::Range1D(Ordinal lbound_in, Ordinal ubound_in)
: lbound_(lbound_in), ubound_(ubound_in)
{
assert_valid_range(lbound_in,ubound_in);
}
inline
bool Range1D::full_range() const {
return ubound_ == INT_MAX-1;
}
inline
Range1D::Ordinal Range1D::lbound() const {
return lbound_;
}
inline
Range1D::Ordinal Range1D::ubound() const {
return ubound_;
}
inline
Range1D::Ordinal Range1D::size() const {
return ubound_ - lbound_ + 1;
}
inline
bool Range1D::in_range(Ordinal i) const {
return lbound_ <= i && i <= ubound_;
}
inline
Range1D& Range1D::operator+=( Ordinal incr ) {
assert_valid_range( lbound_ + incr, ubound_ + incr );
lbound_ += incr;
ubound_ += incr;
return *this;
}
inline
Range1D& Range1D::operator-=( Ordinal incr )
{
assert_valid_range( lbound_ - incr, ubound_ - incr );
lbound_ -= incr;
ubound_ -= incr;
return *this;
}
// See Range1D.cpp
inline
void Range1D::assert_valid_range(Ordinal lbound_in, Ordinal ubound_in) const
{
(void)lbound_in; (void)ubound_in;
#ifdef TEUCHOS_DEBUG
TEST_FOR_EXCEPTION(
lbound_in < 0, std::range_error
,"Range1D::assert_valid_range(): Error, lbound ="
<<lbound_in<<" must be greater than or equal to 0."
);
TEST_FOR_EXCEPTION(
lbound_in > ubound_in, std::range_error
,"Range1D::assert_valid_range(): Error, lbound = "
<<lbound_in<<" > ubound = "<<ubound_in
);
#endif
}
} // end namespace Teuchos
#endif // end TEUCHOS_RANGE1D_HPP
|