| CppAD: A C++ Algorithmic Differentiation Package
    20171217
    | 
| 
 | inline | 
Reverse mode Hessian sparsity pattern for CSumOp operator.
This operation is
     z = q + x(1) + ... + x(m) - y(1) - ... - y(n).
     H(y, x, w, ...) = G[ z(x, y), y, x, w, ... ]
| Vector_set | is the type used for vectors of sets. It can be either sparse_pack or sparse_list. | 
| i_z | variable index corresponding to the result for this operation; i.e. the index in sparsity corresponding to z. | 
| arg | arg[0] is the number of addition variables in this cummulative summation; i.e., m + n.arg[1] is the number of subtraction variables in this cummulative summation; i.e., m.parameter[ arg[2] ]is the parameter valueqin this cummunative summation.arg[2+i]fori = 1 , ... , mis the valuex(i).arg[2+arg[0]+i]fori = 1 , ... , nis the valuey(i). | 
| rev_jacobian | rev_jacobian[i_z]is all false (true) if the Jabobian of G with respect to z must be zero (may be non-zero).For i = 1 , ... , mrev_jacobian[ arg[2+i] ]is all false (true) if the Jacobian with respect tox(i)is zero (may be non-zero). On input, it corresponds to the function G, and on output it corresponds to the function H.For i = 1 , ... , nrev_jacobian[ arg[2+arg[0]+i] ]is all false (true) if the Jacobian with respect toy(i)is zero (may be non-zero). On input, it corresponds to the function G, and on output it corresponds to the function H. | 
| rev_hes_sparsity | The set with index i_z in in rev_hes_sparsity is the Hessian sparsity pattern for the fucntion G where one of the partials derivative is with respect to z. For i = 1 , ... , mThe set with indexarg[2+i]in rev_hes_sparsity is the Hessian sparsity pattern where one of the partials derivative is with respect tox(i). On input, it corresponds to the function G, and on output it corresponds to the function H.For i = 1 , ... , nThe set with indexarg[2+arg[0]+i]in rev_hes_sparsity is the Hessian sparsity pattern where one of the partials derivative is with respect toy(i). On input, it corresponds to the function G, and on output it corresponds to the function H. | 
Definition at line 600 of file csum_op.hpp.
Referenced by rev_hes_sweep().