/usr/include/trilinos/Teuchos_OrdinalTraits.hpp is in libtrilinos-teuchos-dev 12.12.1-5.
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 | // @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.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ***********************************************************************
// @HEADER
// Kris
// 07.08.03 -- Move into Teuchos package/namespace
#ifndef _TEUCHOS_ORDINALTRAITS_HPP_
#define _TEUCHOS_ORDINALTRAITS_HPP_
/*! \file Teuchos_OrdinalTraits.hpp
\brief Defines basic traits for the ordinal field type
*/
#include "Teuchos_ConfigDefs.hpp"
#include <limits>
/*! \struct Teuchos::OrdinalTraits
\brief This structure defines some basic traits for the ordinal field type.
Ordinal traits are an essential part of templated codes. This structure offers
the basic traits of the templated ordinal type, like defining zero and one.
For the general type, or default implementation, an aborting function
is defined which should restrict implementations from using ordinal traits other than
the defined specializations.
\note The defined specializations for OrdinalTraits are: \c int and \c long \c int.
*/
/* This is the default structure used by OrdinalTraits<T> to produce a compile time
error when the specialization does not exist for type <tt>T</tt>.
*/
namespace Teuchos {
template<class T>
struct UndefinedOrdinalTraits
{
//! This function should not compile if there is an attempt to instantiate!
static inline T notDefined() { return T::this_type_is_missing_a_specialization(); }
};
template<class T>
struct OrdinalTraits {
//! Allows testing to see if ordinal traits machine parameters are defined.
static const bool hasMachineParameters = false;
//! Returns representation of zero for this ordinal type.
static inline T zero() { return UndefinedOrdinalTraits<T>::notDefined(); }
//! Returns representation of one for this ordinal type.
static inline T one() { return UndefinedOrdinalTraits<T>::notDefined(); }
//! \brief Returns a value designating the maximum value accessible by code using OrdinalTraits.
/*! For a signed ordinal, this will typically be the maximum positive value. However, for an unsigned ordinal, this will typically be one less than the
* maximum value, because the maximum value will typically be reserved for designating an invalid value.
*/
static inline T max() { return UndefinedOrdinalTraits<T>::notDefined(); }
//! Returns a value designating an invalid number. For signed types, this is typically negative one; for unsigned types, it is typically the largest value.
static inline T invalid() { return UndefinedOrdinalTraits<T>::notDefined(); }
//! Returns name of this ordinal type.
static inline std::string name() { return UndefinedOrdinalTraits<T>::notDefined(); }
};
#ifndef DOXYGEN_SHOULD_SKIP_THIS
template<>
struct OrdinalTraits<char> {
static const bool hasMachineParameters = false;
static inline char zero() {return(0);}
static inline char one() {return(1);}
static inline char invalid() {return(std::numeric_limits<char>::max());}
static inline char max() {return(std::numeric_limits<char>::max()-one());}
static inline std::string name() {return("char");}
};
template<>
struct OrdinalTraits<short int> {
static const bool hasMachineParameters = false;
static inline short int zero() {return(0);}
static inline short int one() {return(1);}
static inline short int invalid() {return(-1);}
static inline short int max() {return(std::numeric_limits<short int>::max());}
static inline std::string name() {return("short int");}
};
template<>
struct OrdinalTraits<int> {
static const bool hasMachineParameters = false;
static inline int zero() {return(0);}
static inline int one() {return(1);}
static inline int invalid() {return(-1);}
static inline int max() {return(std::numeric_limits<int>::max());}
static inline std::string name() {return("int");}
};
template<>
struct OrdinalTraits<unsigned int> {
static const bool hasMachineParameters = false;
static inline unsigned int zero() {return(0);}
static inline unsigned int one() {return(1);}
static inline unsigned int invalid() {return(std::numeric_limits<unsigned int>::max());}
static inline unsigned int max() {return(std::numeric_limits<unsigned int>::max()-1);}
static inline std::string name() {return("unsigned int");}
};
template<>
struct OrdinalTraits<long int> {
static const bool hasMachineParameters = false;
static inline long int zero() {return(static_cast<long int>(0));}
static inline long int one() {return(static_cast<long int>(1));}
static inline long int invalid() {return(static_cast<long int>(-1));}
static inline long int max() {return(std::numeric_limits<long int>::max());}
static inline std::string name() {return("long int");}
};
template<>
struct OrdinalTraits<long unsigned int> {
static const bool hasMachineParameters = false;
static inline long unsigned int zero() {return(static_cast<long unsigned int>(0));}
static inline long unsigned int one() {return(static_cast<long unsigned int>(1));}
static inline long unsigned int invalid() {return(std::numeric_limits<long unsigned int>::max());}
static inline long unsigned int max() {return(std::numeric_limits<long unsigned int>::max()-1);}
static inline std::string name() {return("long unsigned int");}
};
#ifdef HAVE_TEUCHOS_LONG_LONG_INT
template<>
struct OrdinalTraits<long long int> {
static const bool hasMachineParameters = false;
static inline long long int zero() {return(static_cast<long long int>(0));}
static inline long long int one() {return(static_cast<long long int>(1));}
static inline long long int invalid() {return(static_cast<long long int>(-1));}
static inline long long int max() {return(LLONG_MAX);}
static inline std::string name() {return("long long int");}
};
template<>
struct OrdinalTraits<unsigned long long int> {
static const bool hasMachineParameters = false;
static inline unsigned long long int zero() {return(static_cast<unsigned long long int>(0));}
static inline unsigned long long int one() {return(static_cast<unsigned long long int>(1));}
static inline unsigned long long int invalid() {return(std::numeric_limits<unsigned long long int>::max());}
static inline unsigned long long int max() {return(std::numeric_limits<unsigned long long int>::max()-1);}
static inline std::string name() {return("unsigned long long int");}
};
#endif // HAVE_TEUCHOS_LONG_LONG_INT
#ifdef HAVE_TEUCHOS___INT64
template<>
struct OrdinalTraits<__int64> {
static const bool hasMachineParameters = false;
static inline __int64 zero() {return(static_cast<__int64>(0));}
static inline __int64 one() {return(static_cast<__int64>(1));}
static inline __int64 invalid() {return(std::numeric_limits<__int64>::max());}
static inline __int64 max() {return(std::numeric_limits<__int64>::max()-1);}
static inline std::string name() {return("__int64");}
};
template<>
struct OrdinalTraits<unsigned __int64> {
static const bool hasMachineParameters = false;
static inline unsigned __int64 zero() {return(static_cast<unsigned __int64>(0));}
static inline unsigned __int64 one() {return(static_cast<unsigned __int64>(1));}
static inline unsigned __int64 invalid() {return(std::numeric_limits<unsigned __int64>::max());}
static inline unsigned __int64 max() {return(std::numeric_limits<unsigned __int64>::max()-1);}
static inline std::string name() {return("unsigned __int64");}
};
#endif // HAVE_TEUCHOS___INT64
#endif // DOXYGEN_SHOULD_SKIP_THIS
} // namespace Teuchos
#endif // _TEUCHOS_ORDINALTRAITS_HPP_
|