|
Stokhos Package Browser (Single Doxygen Collection)
Version of the Day
|
Go to the documentation of this file.
44 #ifndef STOKHOS_JACOBIBASIS_HPP
45 #define STOKHOS_JACOBIBASIS_HPP
93 template <
typename ordinal_type,
typename value_type>
value_type getC(int n) const
~JacobiBasis()
Destructor.
ordinal_type p
Order of basis.
GrowthPolicy
Enumerated type for determining Smolyak growth policies.
value_type getD(int n) const
bool normalize
Normalize basis.
virtual bool computeRecurrenceCoefficients(ordinal_type n, Teuchos::Array< value_type > &alpha, Teuchos::Array< value_type > &beta, Teuchos::Array< value_type > &delta, Teuchos::Array< value_type > &gamma) const
Compute recurrence coefficients.
GrowthPolicy growth
Smolyak growth policy.
JacobiBasis & operator=(const JacobiBasis &b)
Implementation of OneDOrthogPolyBasis based on the general three-term recurrence relationship:
Top-level namespace for Stokhos classes and functions.
value_type getB(int n) const
Teuchos::Array< value_type > gamma
Recurrence coefficients.
Teuchos::Array< value_type > alpha
Recurrence coefficients.
value_type poch3(value_type x) const
Teuchos::Array< value_type > delta
Recurrence coefficients.
const IndexType const IndexType const IndexType const IndexType const ValueType const ValueType * x
virtual Teuchos::RCP< OneDOrthogPolyBasis< ordinal_type, value_type > > cloneWithOrder(ordinal_type p) const
Clone this object with the option of building a higher order basis.
value_type getA(int n) const
Teuchos::Array< value_type > beta
Recurrence coefficients.
JacobiBasis(ordinal_type p, value_type alphaIndex, value_type betaIndex, bool normalize=false, GrowthPolicy growth=SLOW_GROWTH)
Constructor.