#include <Teuchos_PolynomialTraits.hpp>
Public Types | |
| typedef Scalar | coeff_type |
| Typename of coefficients. | |
| typedef Scalar | scalar_type |
| Typename of scalars. | |
Static Public Member Functions | |
| Teuchos::RefCountPtr< coeff_type > | clone (const coeff_type &c) |
| Clone a coefficient. | |
| void | copy (const coeff_type &x, coeff_type *y) |
| Copy a coefficient. | |
| void | assign (coeff_type *y, const scalar_type &alpha) |
| Assign a scalar to a coefficient. | |
| void | update (coeff_type *y, const coeff_type &x, const scalar_type &beta) |
| y = x + beta*y | |
This class provides traits for implementing Teuchos::Polynomial. The default template definition here will work for any scalar type. Any other coefficient type for Teuchos::Polynomial should provide a specialization of this traits class for that type that mirrors the default definition below.
Definition at line 45 of file Teuchos_PolynomialTraits.hpp.
|
|||||
|
Typename of coefficients.
Definition at line 49 of file Teuchos_PolynomialTraits.hpp. |
|
|||||
|
Typename of scalars.
Definition at line 52 of file Teuchos_PolynomialTraits.hpp. |
|
||||||||||
|
Clone a coefficient.
Definition at line 55 of file Teuchos_PolynomialTraits.hpp. |
|
||||||||||||||||
|
Copy a coefficient.
Definition at line 60 of file Teuchos_PolynomialTraits.hpp. |
|
||||||||||||||||
|
Assign a scalar to a coefficient.
Definition at line 65 of file Teuchos_PolynomialTraits.hpp. |
|
||||||||||||||||||||
|
y = x + beta*y
Definition at line 70 of file Teuchos_PolynomialTraits.hpp. |
1.3.9.1