/usr/include/trilinos/Sacado_PCE_OrthogPoly.hpp is in libtrilinos-stokhos-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 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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | // @HEADER
// ***********************************************************************
//
// Stokhos Package
// Copyright (2009) 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 Eric T. Phipps (etphipp@sandia.gov).
//
// ***********************************************************************
// @HEADER
#ifndef SACADO_PCE_ORTHOGPOLY_HPP
#define SACADO_PCE_ORTHOGPOLY_HPP
#include "Stokhos_ConfigDefs.h"
#ifdef HAVE_STOKHOS_SACADO
#include "Teuchos_RCP.hpp"
#include "Sacado_Traits.hpp"
#include "Sacado_Handle.hpp"
#include "Sacado_mpl_apply.hpp"
#include "Stokhos_OrthogPolyExpansion.hpp"
#include "Stokhos_OrthogPolyApprox.hpp"
#include <cmath>
#include <algorithm> // for std::min and std::max
#include <ostream> // for std::ostream
namespace Sacado {
//! Namespace for polynomial chaos expansion classes
namespace PCE {
//! Generalized polynomial chaos expansion class
/*!
* Uses a handle and a "copy-on-write" strategy for efficient copying, but
* no expression templating.
*/
template <typename T, typename Storage >
class OrthogPoly {
public:
//! Typename of values
typedef T value_type;
//! Typename of scalar's (which may be different from T)
typedef typename ScalarType<T>::type scalar_type;
//! Typename of ordinals
typedef int ordinal_type;
//! Typename of storage class
typedef Storage storage_type;
//! Basis type
typedef Stokhos::OrthogPolyBasis<ordinal_type,T> basis_type;
//! Expansion type
typedef Stokhos::OrthogPolyExpansion<ordinal_type,T,Storage> expansion_type;
//! Stokhos approximation type
typedef Stokhos::OrthogPolyApprox<ordinal_type,T,Storage> approx_type;
typedef typename approx_type::pointer pointer;
typedef typename approx_type::const_pointer const_pointer;
typedef typename approx_type::reference reference;
typedef typename approx_type::const_reference const_reference;
//! Turn OrthogPoly into a meta-function class usable with mpl::apply
template <typename S>
struct apply {
typedef typename Sacado::mpl::apply<Storage,ordinal_type,S>::type storage_type;
typedef OrthogPoly<S,storage_type> type;
};
//! Default constructor
/*!
* Sets size to 1 and first coefficient to 0 (represents a constant).
*/
OrthogPoly();
//! Constructor with supplied value \c x
/*!
* Sets size to 1 and first coefficient to x (represents a constant).
*/
OrthogPoly(const value_type& x);
//! Constructor with expansion \c expansion (General case)
/*!
* Creates array of correct size and initializes coeffiencts to 0.
*/
OrthogPoly(const Teuchos::RCP<expansion_type>& expansion);
//! Constructor with expansion \c expansion and specified size \c sz
/*!
* Creates array of size \c sz and initializes coeffiencts to 0.
*/
OrthogPoly(const Teuchos::RCP<expansion_type>& expansion,
ordinal_type sz);
//! Copy constructor
OrthogPoly(const OrthogPoly& x);
//! Destructor
~OrthogPoly();
//! Initialize coefficients to value
void init(const T& v) { th->init(v); }
//! Initialize coefficients to an array of values
void init(const T* v) { th->init(v); }
//! Initialize coefficients from an OrthogPoly with different storage
template <typename S>
void init(const OrthogPoly<T,S>& v) { th->init(v.getOrthogPolyApprox()); }
//! Load coefficients to an array of values
void load(T* v) { th->load(v); }
//! Load coefficients into an OrthogPoly with different storage
template <typename S>
void load(OrthogPoly<T,S>& v) { th->load(v.getOrthogPolyApprox()); }
//! Reset expansion
/*!
* May change size of array. Coefficients are preserved.
*/
void reset(const Teuchos::RCP<expansion_type>& expansion);
//! Reset expansion and size
/*!
* Coefficients are preserved.
*/
void reset(const Teuchos::RCP<expansion_type>& expansion,
ordinal_type sz);
//! Prepare polynomial for writing
/*!
* This method prepares the polynomial for writing through coeff() and
* fastAccessCoeff() member functions. It ensures the handle for the
* %Hermite coefficients is not shared among any other %Hermite polynomial
* objects. If the handle is not shared it does nothing, so there
* is no cost in calling this method in this case. If the handle is
* shared and this method is not called, any changes to the coefficients
* by coeff() or fastAccessCoeff() may change other polynomial objects.
*/
void copyForWrite() { th.makeOwnCopy(); }
//! Evaluate polynomial approximation at a point
value_type evaluate(const Teuchos::Array<value_type>& point) const;
//! Evaluate polynomial approximation at a point with given basis values
value_type evaluate(const Teuchos::Array<value_type>& point,
const Teuchos::Array<value_type>& bvals) const;
//! Compute mean of expansion
value_type mean() const {return th->mean(); }
//! Compute standard deviation of expansion
value_type standard_deviation() const { return th->standard_deviation(); }
//! Compute the two-norm of expansion
value_type two_norm() const { return th->two_norm(); }
//! Compute the squared two-norm of expansion
value_type two_norm_squared() const { return th->two_norm_squared(); }
//! Compute the L2 inner product of 2 PCEs
value_type inner_product(const OrthogPoly& b) const {
return th->inner_product(b.getOrthogPolyApprox()); }
//! Print approximation in basis
std::ostream& print(std::ostream& os) const { return th->print(os); }
//! Returns whether two PCE objects have the same values
bool isEqualTo(const OrthogPoly& x) const;
/*!
* @name Assignment operators
*/
//@{
//! Assignment operator with constant right-hand-side
OrthogPoly<T,Storage>& operator=(const value_type& val);
//! Assignment with OrthogPoly right-hand-side
OrthogPoly<T,Storage>& operator=(const OrthogPoly<T,Storage>& x);
//@}
/*!
* Accessor methods
*/
//@{
//! Get basis
Teuchos::RCP<const basis_type> basis() const { return th->basis(); }
//! Get expansion
Teuchos::RCP<expansion_type> expansion() const { return expansion_; }
//@}
/*!
* @name Value accessor methods
*/
//@{
//! Returns value
const_reference val() const { return (*th)[0]; }
//! Returns value
reference val() { return (*th)[0]; }
//@}
/*!
* @name Coefficient accessor methods
*/
//@{
//! Returns size of polynomial
ordinal_type size() const { return th->size();}
//! Returns true if polynomial has size >= sz
bool hasFastAccess(ordinal_type sz) const { return th->size()>=sz;}
//! Returns Hermite coefficient array
const_pointer coeff() const { return th->coeff();}
//! Returns Hermite coefficient array
pointer coeff() { return th->coeff();}
//! Returns degree \c i term with bounds checking
value_type coeff(ordinal_type i) const {
value_type tmp= i<th->size() ? (*th)[i]:value_type(0.); return tmp;}
//! Returns degree \c i term without bounds checking
reference fastAccessCoeff(ordinal_type i) { return (*th)[i];}
//! Returns degree \c i term without bounds checking
value_type fastAccessCoeff(ordinal_type i) const { return (*th)[i];}
//! Get coefficient term for given dimension and order
reference term(ordinal_type dimension, ordinal_type order) {
return th->term(dimension, order); }
//! Get coefficient term for given dimension and order
const_reference term(ordinal_type dimension, ordinal_type order) const {
return th->term(dimension, order); }
//! Get orders for a given term
Teuchos::Array<ordinal_type> order(ordinal_type term) const {
return th->order(term); }
//@}
/*!
* @name Unary operators
*/
//@{
//! Unary-plus operator
OrthogPoly<T,Storage> operator + () const;
//! Unary-minus operator
OrthogPoly<T,Storage> operator - () const;
//! Addition-assignment operator with constant right-hand-side
OrthogPoly<T,Storage>& operator += (const value_type& x);
//! Subtraction-assignment operator with constant right-hand-side
OrthogPoly<T,Storage>& operator -= (const value_type& x);
//! Multiplication-assignment operator with constant right-hand-side
OrthogPoly<T,Storage>& operator *= (const value_type& x);
//! Division-assignment operator with constant right-hand-side
OrthogPoly<T,Storage>& operator /= (const value_type& x);
//! Addition-assignment operator with Hermite right-hand-side
OrthogPoly<T,Storage>& operator += (const OrthogPoly<T,Storage>& x);
//! Subtraction-assignment operator with Hermite right-hand-side
OrthogPoly<T,Storage>& operator -= (const OrthogPoly<T,Storage>& x);
//! Multiplication-assignment operator with Hermite right-hand-side
OrthogPoly<T,Storage>& operator *= (const OrthogPoly<T,Storage>& x);
//! Division-assignment operator with Hermite right-hand-side
OrthogPoly<T,Storage>& operator /= (const OrthogPoly<T,Storage>& x);
//@}
//! Get underlying Stokhos::OrthogPolyApprox
const approx_type& getOrthogPolyApprox() const { return *th; }
//! Get underlying Stokhos::OrthogPolyApprox
approx_type& getOrthogPolyApprox() { return *th; }
protected:
//! Expansion class
Teuchos::RCP<expansion_type> expansion_;
//! Static constant expansion class for constants
static Teuchos::RCP<expansion_type> const_expansion_;
Sacado::Handle< Stokhos::OrthogPolyApprox<int,value_type,Storage> > th;
}; // class Hermite
// Operations
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator+(const OrthogPoly<T,Storage>& a, const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator+(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator+(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator-(const OrthogPoly<T,Storage>& a, const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator-(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator-(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator*(const OrthogPoly<T,Storage>& a, const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator*(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator*(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator/(const OrthogPoly<T,Storage>& a, const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator/(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
operator/(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
exp(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
log(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> void
log(OrthogPoly<T,Storage>& c, const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
log10(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
sqrt(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
cbrt(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
pow(const OrthogPoly<T,Storage>& a, const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
pow(const T& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
pow(const OrthogPoly<T,Storage>& a,
const T& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
cos(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
sin(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
tan(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
cosh(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
sinh(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
tanh(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
acos(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
asin(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
atan(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
atan2(const OrthogPoly<T,Storage>& a, const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
atan2(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
atan2(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
acosh(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
asinh(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
atanh(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
abs(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
fabs(const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> OrthogPoly<T,Storage>
max(const OrthogPoly<T,Storage>& a, const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
max(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
max(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
min(const OrthogPoly<T,Storage>& a, const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
min(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> OrthogPoly<T,Storage>
min(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> bool
operator==(const OrthogPoly<T,Storage>& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator==(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator==(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> bool
operator!=(const OrthogPoly<T,Storage>& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator!=(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator!=(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> bool
operator<=(const OrthogPoly<T,Storage>& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator<=(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator<=(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> bool
operator>=(const OrthogPoly<T,Storage>& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator>=(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator>=(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> bool
operator<(const OrthogPoly<T,Storage>& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator<(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator<(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> bool
operator>(const OrthogPoly<T,Storage>& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator>(const typename OrthogPoly<T,Storage>::value_type& a,
const OrthogPoly<T,Storage>& b);
template <typename T, typename Storage> bool
operator>(const OrthogPoly<T,Storage>& a,
const typename OrthogPoly<T,Storage>::value_type& b);
template <typename T, typename Storage> std::ostream&
operator << (std::ostream& os, const OrthogPoly<T,Storage>& a);
template <typename T, typename Storage> std::istream&
operator >> (std::istream& os, OrthogPoly<T,Storage>& a);
} // namespace PCE
} // namespace Sacado
#include "Sacado_PCE_OrthogPolyTraits.hpp"
#include "Sacado_PCE_OrthogPolyImp.hpp"
#endif // HAVE_STOKHOS_SACADO
#endif // SACADO_PCE_ORTHOGPOLY_HPP
|