CppAD: A C++ Algorithmic Differentiation Package  20130918
template<class Base >
size_t CppAD::recorder< Base >::PutOp ( OpCode  op) [inline]

Put next operator in the operation sequence.

This sets the op code for the next operation in this recording. This call must be followed by putting the corresponding

	NumArg(op)

argument indices in the recording.

Parameters:
opIs the op code corresponding to the the operation that is being recorded (which must not be LdpOp or LdvOp).
Returns:
The return value is the index of the primary (last) variable corresponding to the result of this operation. The number of variables corresponding to the operation is given by
	NumRes(op)
With each call to PutOp or PutLoadOp, the return index increases by the number of variables corresponding to the call. This index starts at zero after the default constructor and after each call to Erase.

Definition at line 177 of file recorder.hpp.

Referenced by CppAD::optimize::optimize_run(), CppAD::optimize::record_csum(), CppAD::optimize::record_pv(), CppAD::optimize::record_vp(), and CppAD::optimize::record_vv().

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines