/usr/include/trilinos/Sacado_LFad_LogicalSparse.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 323 324 325 326 327 328 329 330 331 332 333 | // $Id$
// $Source$
// @HEADER
// ***********************************************************************
//
// Sacado Package
// Copyright (2006) Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// 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 David M. Gay (dmgay@sandia.gov) or Eric T. Phipps
// (etphipp@sandia.gov).
//
// ***********************************************************************
// @HEADER
#ifndef SACADO_LFAD_LOGICALSPARSE_HPP
#define SACADO_LFAD_LOGICALSPARSE_HPP
#include "Sacado_LFad_LogicalSparseTraits.hpp"
#include "Sacado_LFad_ExpressionTraits.hpp"
#include "Sacado_Fad_DynamicStorage.hpp"
namespace Sacado {
//! Namespace for logical forward-mode AD classes
namespace LFad {
//! Wrapper for a generic expression template
/*!
* This template class serves as a wrapper for all Fad expression
* template classes.
*/
template <typename ExprT> class Expr {};
/*!
* \brief Implementation class for computing the logical sparsity of a
* derivative using forward-mode AD.
*/
template <typename ValT, typename LogT>
class LogicalSparseImp :
public Fad::DynamicStorage<ValT,LogT> {
typedef Fad::DynamicStorage<ValT,LogT> Storage;
public:
//! Typename of values (e.g., double)
typedef ValT value_type;
//! Logical type (i.e., type for derivative array components (e.g., bool)
typedef LogT logical_type;
/*!
* @name Initialization methods
*/
//@{
//! Default constructor
LogicalSparseImp() : Storage(value_type(0)) {}
//! Constructor with supplied value \c x
/*!
* Initializes value to \c x and derivative array is empty
*/
LogicalSparseImp(const value_type & x) : Storage(x) {}
//! Constructor with size \c sz and value \c x
/*!
* Initializes value to \c x and derivative array 0 of length \c sz
*/
LogicalSparseImp(const int sz, const value_type & x) : Storage(sz, x) {}
//! Constructor with size \c sz, index \c i, and value \c x
/*!
* Initializes value to \c x and derivative array of length \c sz
* as row \c i of the identity matrix, i.e., sets derivative component
* \c i to 1 and all other's to zero.
*/
LogicalSparseImp(const int sz, const int i, const value_type & x) :
Storage(sz, x) {
this->fastAccessDx(i)=logical_type(1);
}
//! Copy constructor
LogicalSparseImp(const LogicalSparseImp& x) :
Storage(x) {}
//! Copy constructor from any Expression object
template <typename S> LogicalSparseImp(const Expr<S>& x);
//! Destructor
~LogicalSparseImp() {}
//! Set %LogicalSparseImp object as the \c ith independent variable
/*!
* Sets the derivative array of length \c n to the \c ith row of the
* identity matrix and has the same affect as the
* Implementation(const int sz, const int i, const T & x)
* constructor.
*/
void diff(const int ith, const int n);
//@}
/*!
* @name Derivative accessor methods
*/
//@{
//! Returns true if derivative array is not empty
bool hasFastAccess() const { return this->size()!=0;}
//! Returns true if derivative array is empty
bool isPassive() const { return this->size()!=0;}
//! Set whether variable is constant
void setIsConstant(bool is_const) {
if (is_const && this->size()!=0)
this->resize(0);
}
//@}
/*!
* @name Assignment operators
*/
//@{
//! Assignment operator with constant right-hand-side
LogicalSparseImp& operator=(const value_type& val);
//! Assignment with Expr right-hand-side
LogicalSparseImp&
operator=(const LogicalSparseImp& x);
//! Assignment operator with any expression right-hand-side
template <typename S>
LogicalSparseImp& operator=(const Expr<S>& x);
//@}
/*!
* @name Unary operators
*/
//@{
//! Addition-assignment operator with constant right-hand-side
LogicalSparseImp& operator += (const value_type& x);
//! Subtraction-assignment operator with constant right-hand-side
LogicalSparseImp& operator -= (const value_type& x);
//! Multiplication-assignment operator with constant right-hand-side
LogicalSparseImp& operator *= (const value_type& x);
//! Division-assignment operator with constant right-hand-side
LogicalSparseImp& operator /= (const value_type& x);
//! Addition-assignment operator with Expr right-hand-side
template <typename S>
LogicalSparseImp& operator += (const Expr<S>& x);
//! Subtraction-assignment operator with Expr right-hand-side
template <typename S>
LogicalSparseImp& operator -= (const Expr<S>& x);
//! Multiplication-assignment operator with Expr right-hand-side
template <typename S>
LogicalSparseImp& operator *= (const Expr<S>& x);
//! Division-assignment operator with Expr right-hand-side
template <typename S>
LogicalSparseImp& operator /= (const Expr<S>& x);
//@}
}; // class LogicalSparseImp
//! Expression template specialization for LogicalSparse
template <typename ValT, typename LogT>
class Expr< LogicalSparseImp<ValT,LogT> > :
public LogicalSparseImp<ValT,LogT> {
public:
//! Default constructor
Expr() :
LogicalSparseImp<ValT,LogT>() {}
//! Constructor with supplied value \c x
/*!
* Initializes value to \c x and derivative array is empty
*/
Expr(const ValT & x) :
LogicalSparseImp<ValT,LogT>(x) {}
//! Constructor with size \c sz and value \c x
/*!
* Initializes value to \c x and derivative array 0 of length \c sz
*/
Expr(const int sz, const ValT & x) :
LogicalSparseImp<ValT,LogT>(sz,x) {}
//! Constructor with size \c sz, index \c i, and value \c x
/*!
* Initializes value to \c x and derivative array of length \c sz
* as row \c i of the identity matrix, i.e., sets derivative component
* \c i to 1 and all other's to zero.
*/
Expr(const int sz, const int i, const ValT & x) :
LogicalSparseImp<ValT,LogT>(sz,i,x) {}
//! Copy constructor
Expr(const Expr& x) :
LogicalSparseImp<ValT,LogT>(x) {}
//! Copy constructor from any Expression object
template <typename S> Expr(const Expr<S>& x) :
LogicalSparseImp<ValT,LogT>(x) {}
//! Destructor
~Expr() {}
}; // class Expr<LogicalSparseImp>
/*!
* \brief User inteface class for computing the logical sparsity pattern
* of a derivative via forward-mode AD.
*/
template <typename ValT, typename LogT >
class LogicalSparse : public Expr< LogicalSparseImp<ValT,LogT > > {
public:
//! Turn LogicalSparse into a meta-function class usable with mpl::apply
template <typename T, typename U = LogT>
struct apply {
typedef LogicalSparse<T,U> type;
};
/*!
* @name Initialization methods
*/
//@{
//! Default constructor.
/*!
* Initializes value to 0 and derivative array is empty
*/
LogicalSparse() :
Expr< LogicalSparseImp< ValT,LogT > >() {}
//! Constructor with supplied value \c x of type ValueT
/*!
* Initializes value to \c x and derivative array is empty
*/
LogicalSparse(const ValT& x) :
Expr< LogicalSparseImp< ValT,LogT > >(x) {}
//! Constructor with size \c sz and value \c x
/*!
* Initializes value to \c x and derivative array 0 of length \c sz
*/
LogicalSparse(const int sz, const ValT& x) :
Expr< LogicalSparseImp< ValT,LogT > >(sz,x) {}
//! Constructor with size \c sz, index \c i, and value \c x
/*!
* Initializes value to \c x and derivative array of length \c sz
* as row \c i of the identity matrix, i.e., sets derivative component
* \c i to 1 and all other's to zero.
*/
LogicalSparse(const int sz, const int i, const ValT & x) :
Expr< LogicalSparseImp< ValT,LogT > >(sz,i,x) {}
//! Copy constructor
LogicalSparse(const LogicalSparse& x) :
Expr< LogicalSparseImp< ValT,LogT > >(x) {}
//! Copy constructor from any Expression object
template <typename S> LogicalSparse(const Expr<S>& x) :
Expr< LogicalSparseImp< ValT,LogT > >(x) {}
//@}
//! Destructor
~LogicalSparse() {}
//! Assignment operator with constant right-hand-side
LogicalSparse& operator=(const ValT& v) {
LogicalSparseImp< ValT,LogT >::operator=(v);
return *this;
}
//! Assignment operator with LogicalSparse right-hand-side
LogicalSparse& operator=(const LogicalSparse& x) {
LogicalSparseImp< ValT,LogT >::operator=(static_cast<const LogicalSparseImp< ValT,LogT >&>(x));
return *this;
}
//! Assignment operator with any expression right-hand-side
template <typename S> LogicalSparse& operator=(const Expr<S>& x)
{
LogicalSparseImp< ValT,LogT >::operator=(x);
return *this;
}
}; // class LogicalSparse<ValT,LogT>
} // namespace LFad
} // namespace Sacado
#include "Sacado_LFad_LogicalSparseImp.hpp"
#include "Sacado_LFad_LogicalSparseOps.hpp"
#endif // SACADO_LFAD_LOGICALSPARSE_HPP
|