Prev Next

@(@\newcommand{\W}[1]{ \; #1 \; } \newcommand{\R}[1]{ {\rm #1} } \newcommand{\B}[1]{ {\bf #1} } \newcommand{\D}[2]{ \frac{\partial #1}{\partial #2} } \newcommand{\DD}[3]{ \frac{\partial^2 #1}{\partial #2 \partial #3} } \newcommand{\Dpow}[2]{ \frac{\partial^{#1}}{\partial {#2}^{#1}} } \newcommand{\dpow}[2]{ \frac{ {\rm d}^{#1}}{{\rm d}\, {#2}^{#1}} }@)@
AD Assignment Operator

Syntax
y = x

Purpose
Assigns the value in x to the object y . In either case,

x
The argument x has prototype
     const 
Type &x
where Type is VecAD<Base>::reference , AD<Base> , Base , or any type that has an implicit constructor of the form Base(x) .

y
The target y has prototype
     AD<
Basey

Example
The file ad_assign.cpp contain examples and tests of these operations. It test returns true if it succeeds and false otherwise.
Input File: cppad/core/ad_assign.hpp