CppAD: A C++ Algorithmic Differentiation Package  20171217
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
template<class Base>
template<class InternalSparsity >
void CppAD::atomic_base< Base >::for_sparse_hes ( const vector< Base > &  x,
const vector< size_t > &  x_index,
const vector< size_t > &  y_index,
const InternalSparsity &  for_jac_sparsity,
const InternalSparsity &  rev_jac_sparsity,
InternalSparsity &  for_hes_sparsity 
)
inlineinherited

Link, before case split, from for_hes_sweep to atomic_base.

Template Parameters
InternalSparsityIs the used internaly for sparsity calculations; i.e., sparse_pack or sparse_list.
Parameters
xis parameter arguments to the function, other components are nan.
x_indexis the variable index, on the tape, for the arguments to this function. This size of x_index is n, the number of arguments to this function.
y_indexis the variable index, on the tape, for the results for this function. This size of y_index is m, the number of results for this function.
for_jac_sparsityOn input, for j = 0, ... , n-1, the sparsity pattern with index x_index[j], is the forward Jacobian sparsity for the j-th argument to this atomic function.
rev_jac_sparsityOn input, for i = 0, ... , m-1, the sparsity pattern with index y_index[i], is the reverse Jacobian sparsity for the i-th result to this atomic function. This shows which components of the result affect the function we are computing the Hessian of.
for_hes_sparsityThis is the sparsity pattern for the Hessian. On input, the non-linear terms in the atomic fuction have not been included. Upon return, they have been included.

Definition at line 1803 of file atomic_base.hpp.