/usr/include/trilinos/RangePack_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 | // @HEADER
// ***********************************************************************
//
// Moocho: Multi-functional Object-Oriented arCHitecture for Optimization
// Copyright (2003) 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 Roscoe A. Bartlett (rabartl@sandia.gov)
//
// ***********************************************************************
// @HEADER
#ifndef RANGE1D_H
#define RANGE1D_H
#include "RTOpPack_Types.hpp"
#include "Teuchos_Range1D.hpp"
#include "Teuchos_ScalarTraits.hpp"
namespace RangePack {
/** \brief. One-based subregion index range class.
*
* The class <tt>%Range1D</tt> abstracts a 1-D, 1-based, range of indexes.
* It is used to index into vectors and matrices and return subregions of them
* respectively.
*
* Constructing using \c Range1D() yields a range that represents the entire dimension
* of an object <tt>[1, max_ubound]</tt> (an entire 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>[1,0]</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 range.
* The validity of constructed range will only be checked if \c TEUCHOS_DEBUG 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 . */
typedef RTOpPack::Ordinal Index;
/** \brief . */
enum EInvalidRange { INVALID };
/// 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> a very large number
* <li> <tt>this->lbound() == 1</tt>
* <li> <tt>this->ubound() ==</tt> a very large number
* </ul>
*/
/** \brief . */
inline Range1D();
/** \brief Constructs an invalid (zero) range.
*
* Postconditions: <ul>
* <li> <tt>this->full_range() == false</tt>
* <li> <tt>this->size() == 0</tt>
* <li> <tt>this->lbound() == 1</tt>
* <li> <tt>this->ubound() == 0</tt>
* </ul>
*/
inline Range1D( EInvalidRange );
/** \brief Constructs a range that represents the range <tt>[lbound, ubound]</tt>.
*
* Preconditions: <ul>
* <li> <tt>lbound >= 1</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(Index lbound, Index ubound);
/// Returns \c true if the range represents the entire region (constructed from \c Range1D())
inline bool full_range() const;
/// Return lower bound of the range
inline Index lbound() const;
/// Return upper bound of the range
inline Index ubound() const;
/// Return the size of the range (<tt>ubound() - lbound() + 1</tt>)
inline Index size() const;
/// Return true if the index is in range
inline bool in_range(Index i) const;
/// Increment the range by a constant
inline Range1D& operator+=( Index incr );
/// Deincrement the range by a constant
inline Range1D& operator-=( Index incr );
private:
Index lbound_;
Index ubound_; // = INT_MAX flag for entire range
// lbound == ubound == 0 flag for invalid range.
// assert that the range is valid
inline void assert_valid_range(Index lbound, Index 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::Index 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::Index 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() - 1</tt>
* <li> <tt>rng_lhs.ubound() == rng_rhs.ubound() - 1</tt>
* </ul>
*
* \relates Range1D
*/
inline Range1D operator-(const Range1D &rng_rhs, Range1D::Index 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::Index lbound, Range1D::Index ubound)
{ return rng.full_range() ? Range1D(lbound,ubound) : rng; }
/** \brief Convert from a 0-based Teuchos::Range1D object to a 1-based RangePack::Range1D object.
*
* \relates Range1D
*/
inline Range1D convert( const Teuchos::Range1D &rng )
{ return Range1D(rng.lbound()+1,rng.ubound()+1); }
/** \brief Convert from a 1-based RangePack::Range1D object to a 0-based Teuchos::Range1D object.
*
* \relates Range1D
*/
inline Teuchos::Range1D convert( const Range1D &rng )
{
return Teuchos::Range1D(rng.lbound()-1,rng.ubound()-1);
}
//@}
// //////////////////////////////////////////////////////////
// Inline members
inline
Range1D::Range1D()
: lbound_(1), ubound_(INT_MAX) // RAB: 2004/08/24: Replace this with std::numeric_traits<Index>::max() when supported everywhere!
{}
inline
Range1D::Range1D( EInvalidRange )
: lbound_(1), ubound_(0)
{}
inline
Range1D::Range1D(Index lbound, Index ubound)
: lbound_(lbound), ubound_(ubound)
{
assert_valid_range(lbound,ubound);
}
inline
bool Range1D::full_range() const {
return ubound_ == INT_MAX;
}
inline
Range1D::Index Range1D::lbound() const {
return lbound_;
}
inline
Range1D::Index Range1D::ubound() const {
return ubound_;
}
inline
Range1D::Index Range1D::size() const {
return 1 + ubound_ - lbound_;
}
inline
bool Range1D::in_range(Index i) const {
return lbound_ <= i && i <= ubound_;
}
inline
Range1D& Range1D::operator+=( Index incr ) {
assert_valid_range( lbound_ + incr, ubound_ + incr );
lbound_ += incr;
ubound_ += incr;
return *this;
}
inline
Range1D& Range1D::operator-=( Index incr ) {
assert_valid_range( lbound_ - incr, ubound_ - incr );
lbound_ -= incr;
ubound_ -= incr;
return *this;
}
// See Range1D.cpp
inline
void Range1D::assert_valid_range(Index lbound, Index ubound) const {
#ifdef TEUCHOS_DEBUG
TEST_FOR_EXCEPTION(
lbound < 1, std::range_error
,"Range1D::assert_valid_range(): Error, lbound ="<<lbound<<" must be greater than 0." );
TEST_FOR_EXCEPTION(
lbound > ubound, std::range_error
,"Range1D::assert_valid_range(): Error, lbound = "<<lbound<<" > ubound = "<<ubound );
#endif
}
} // end namespace RangePack
#endif // end RANGE1D_H
|