CppAD: A C++ Algorithmic Differentiation Package
20130918
|
Forward and reverse mode calculations for z = pow(x, y). More...
Go to the source code of this file.
Namespaces | |
namespace | CppAD |
contains all the variables and functions defined by the CppAD package. | |
Functions | |
template<class Base > | |
void | CppAD::forward_powpv_op (size_t p, size_t q, size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, Base *taylor) |
Compute forward mode Taylor coefficients for result of op = PowpvOp. | |
template<class Base > | |
void | CppAD::forward_powpv_op_0 (size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, Base *taylor) |
Compute zero order forward mode Taylor coefficient for result of op = PowpvOp. | |
template<class Base > | |
void | CppAD::forward_powvp_op (size_t p, size_t q, size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, Base *taylor) |
Compute forward mode Taylor coefficients for result of op = PowvvOp. | |
template<class Base > | |
void | CppAD::forward_powvp_op_0 (size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, Base *taylor) |
Compute zero order forward mode Taylor coefficients for result of op = PowvvOp. | |
template<class Base > | |
void | CppAD::forward_powvv_op (size_t p, size_t q, size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, Base *taylor) |
Compute forward mode Taylor coefficients for result of op = PowvvOp. | |
template<class Base > | |
void | CppAD::forward_powvv_op_0 (size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, Base *taylor) |
Compute zero order forward mode Taylor coefficients for result of op = PowvvOp. | |
template<class Base > | |
void | CppAD::reverse_powpv_op (size_t d, size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, const Base *taylor, size_t nc_partial, Base *partial) |
Compute reverse mode partial derivative for result of op = PowpvOp. | |
template<class Base > | |
void | CppAD::reverse_powvp_op (size_t d, size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, const Base *taylor, size_t nc_partial, Base *partial) |
Compute reverse mode partial derivative for result of op = PowvpOp. | |
template<class Base > | |
void | CppAD::reverse_powvv_op (size_t d, size_t i_z, const addr_t *arg, const Base *parameter, size_t nc_taylor, const Base *taylor, size_t nc_partial, Base *partial) |
Compute reverse mode partial derivatives for result of op = PowvvOp. |
Forward and reverse mode calculations for z = pow(x, y).
Definition in file pow_op.hpp.