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}} }@)@This is cppad-20221105 documentation. Here is a link to its current documentation .
Convert an AD Variable or Dynamic Parameter to a Constant

Syntax
y = Var2Par(x)

See Also
value

Purpose
Returns a constant parameter y with the same value as x .

x
The argument x has prototype
    const AD<
Base> &x
The argument x may be a variable, dynamic parameter, or constant parameter.

y
The result y has prototype
    AD<
Base> &y
and is a constant parameter.

Example
The file var2par.cpp contains an example and test of this operation.
Input File: include/cppad/core/var2par.hpp