CppAD: A C++ Algorithmic Differentiation Package  20171217
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
template<class Value >
void CppAD::local::printOpResult ( std::ostream &  os,
size_t  nfz,
const Value *  fz,
size_t  nrz,
const Value *  rz 
)

Prints the result values correspnding to an operator.

Template Parameters
BaseIs the base type for these AD< Base > operations.
ValueDetermines the type of the values that we are printing.
Parameters
osis the output stream that the information is printed on.
nfzis the number of forward sweep calculated values of type Value that correspond to this operation (ignored if NumRes(op) == 0).
fzpoints to the first forward calculated value that correspond to this operation (ignored if NumRes(op) == 0).
nrzis the number of reverse sweep calculated values of type Value that correspond to this operation (ignored if NumRes(op) == 0).
rzpoints to the first reverse calculated value that correspond to this operation (ignored if NumRes(op) == 0).

Definition at line 852 of file op_code.hpp.

Referenced by for_hes_sweep(), for_jac_sweep(), forward0sweep(), forward1sweep(), forward2sweep(), rev_hes_sweep(), rev_jac_sweep(), and reverse_sweep().