42 #ifndef TEUCHOS_POLYNOMIAL_HPP
43 #define TEUCHOS_POLYNOMIAL_HPP
45 #include "Teuchos_PolynomialDecl.hpp"
48 template <
typename CoeffT>
50 const CoeffT& cloneCoeff,
51 unsigned int reserve) :
60 for (
unsigned int i=0; i<
sz; i++)
64 template <
typename CoeffT>
66 unsigned int reserve) :
77 template <
typename CoeffT>
82 template <
typename CoeffT>
89 if (coeff[0] != Teuchos::null) {
90 for (
unsigned int i=sz; i<d+1; i++)
97 template <
typename CoeffT>
104 "Polynomial<CoeffT>::getCoefficient(i): " <<
105 "Error, coefficient i = " << i <<
106 " is not in range, degree = " << d <<
"." );
111 template <
typename CoeffT>
118 "Polynomial<CoeffT>::getCoefficient(i): " <<
119 "Error, coefficient i = " << i <<
120 " is not in range, degree = " << d <<
"." );
125 template <
typename CoeffT>
132 "Polynomial<CoeffT>::setCoefficient(i,v): " <<
133 "Error, coefficient i = " << i <<
134 " is not in range, degree = " << d <<
"." );
137 "Polynomial<CoeffT>::setCoefficient(i,v): " <<
138 "Error, coefficient i = " << i <<
" is null!");
143 template <
typename CoeffT>
152 "Polynomial<CoeffT>::setCoefficientPtr(i,v): " <<
153 "Error, coefficient i = " << i <<
154 " is not in range, degree = " << d <<
"." );
159 template <
typename CoeffT>
163 CoeffT* x, CoeffT* xdot)
const
165 bool evaluate_xdot = (xdot != NULL);
168 for (
unsigned int i=0; i<=d; i++)
171 "Polynomial<CoeffT>::evaluate(): " <<
172 "Error, coefficient i = " << i <<
" is null!");
190 for (
int k=d-1; k>=0; --k) {
195 if (evaluate_xdot && k > 0)
200 #endif // TEUCHOS_VECTOR_POLYNOMIAL_HPP
Teuchos::PolynomialTraits< coeff_type >::scalar_type scalar_type
Typename of scalars.
static void assign(coeff_type *y, const scalar_type &alpha)
Assign a scalar to a coefficient.
static void update(coeff_type *y, const coeff_type &x, const scalar_type &beta)
y = x + beta*y
void setDegree(unsigned int deg)
Set degree of polynomial to deg.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
Macro for throwing an exception with breakpointing to ease debugging.
unsigned int sz
Size of polynomial (may be > d)
Polynomial(unsigned int deg, const CoeffT &cloneCoeff, unsigned int reserve=0)
Create a polynomial of degree deg.
This structure defines some basic traits for a scalar field type.
void setCoefficient(unsigned int i, const CoeffT &v)
Set coefficient i to c.
void setCoefficientPtr(unsigned int i, const Teuchos::RCP< CoeffT > &c_ptr)
Set pointer for coefficient i to c_ptr. DANGEROUS!
Teuchos::RCP< CoeffT > getCoefficient(unsigned int i)
Return ref-count pointer to coefficient i.
std::vector< Teuchos::RCP< CoeffT > > coeff
Vector of polynomial coefficients.
Traits class for polynomial coefficients in Teuchos::Polynomial.
Defines basic traits for the scalar field type.
Smart reference counting pointer class for automatic garbage collection.
void evaluate(typename Teuchos::Polynomial< CoeffT >::scalar_type &t, CoeffT *x, CoeffT *xdot=NULL) const
Evaluate polynomial and possibly its derivative at time t.
static void copy(const coeff_type &x, coeff_type *y)
Copy a coefficient.
unsigned int d
Degree of polynomial.