Prev | Next |
b = Constant(x)
b = Dynamic(x)
b = Parameter(x)
b = Variable(x)
x
has prototype
const AD<Base> &x
const VecAD<Base> &x
b
has prototype
bool b
Constant
is true
is true if and only if
x
is
a constant
parameter.
A VecAD<Base>
object is a constant parameter
if no element of the vector depends on the independent variables.
Dynamic
is true
is true if and only if
x
is
a dynamic
parameter.
No element of a VecAD<Base>
object
can depend on the dynamic parameters and this function returns false
for these objects.
Parameter
is true
is true if and only if
x
is
a parameter
.
A VecAD<Base>
object is a parameter
if no element of the vector depends on the independent variables.
Variable
is true
is true if and only if
x
is
a variable
.
A VecAD<Base>
object is a variable
if any element of the vector depends on the independent variables.
Base
operation sequence
.