Stokhos Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Stokhos_DerivBasis.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // Stokhos Package
4 //
5 // Copyright 2009 NTESS and the Stokhos contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef STOKHOS_DERIVBASIS_HPP
11 #define STOKHOS_DERIVBASIS_HPP
12 
14 
15 namespace Stokhos {
16 
22  template <typename ordinal_type, typename value_type>
23  class DerivBasis :
24  public virtual OrthogPolyBasis<ordinal_type, value_type> {
25  public:
26 
28  DerivBasis() {};
29 
31  virtual ~DerivBasis() {};
32 
42  virtual
46  const Teuchos::RCP< const Stokhos::Sparse3Tensor<ordinal_type, value_type> >& Cijk) const = 0;
47 
56  virtual
59 
60  private:
61 
62  // Prohibit copying
63  DerivBasis(const DerivBasis&);
64 
65  // Prohibit Assignment
66  DerivBasis& operator=(const DerivBasis& b);
67 
68  }; // class DerivBasis
69 
70 } // Namespace Stokhos
71 
72 #endif // STOKHOS_DERIVBASIS
Abstract base class for multivariate orthogonal polynomials that support computing double and triple ...
Data structure storing a sparse 3-tensor C(i,j,k) in a a compressed format.
virtual Teuchos::RCP< Stokhos::Dense3Tensor< ordinal_type, value_type > > computeDerivTripleProductTensor(const Teuchos::RCP< const Teuchos::SerialDenseMatrix< ordinal_type, value_type > > &Bij, const Teuchos::RCP< const Stokhos::Sparse3Tensor< ordinal_type, value_type > > &Cijk) const =0
Compute triple product tensor where represents the derivative of in the direction ...
DerivBasis & operator=(const DerivBasis &b)
Abstract base class for multivariate orthogonal polynomials.
virtual Teuchos::RCP< Teuchos::SerialDenseMatrix< ordinal_type, value_type > > computeDerivDoubleProductTensor() const =0
Compute double product tensor where represents the derivative of in the direction ...
virtual ~DerivBasis()
Destructor.