Prototype for zero order forward mode unary operator with one result (not used). 
- Template Parameters
- 
  
    | Base | base type for the operator; i.e., this operation was recorded using AD< Base > and computations by this routine are done using type Base . |  
 
- Parameters
- 
  
    | i_z | variable index corresponding to the result for this operation; i.e. the row index in taylor corresponding to z. |  | i_x | variable index corresponding to the argument for this operator; i.e. the row index in taylor corresponding to x. |  | cap_order | maximum number of orders that will fit in the taylorarray. |  | taylor | Input: taylor [ i_x * cap_order + 0 ] is the zero order Taylor coefficient corresponding to x. Output: taylor [ i_z * cap_order + 0 ] is the zero order Taylor coefficient corresponding to z.
 |  
 
- Checked Assertions
- 
- NumArg(op) == 1 
- NumRes(op) == 1 
- i_x < i_z 
- 0 < cap_order 
 
Definition at line 190 of file prototype_op.hpp.