本文整理汇总了C++中CppAD::Parameter方法的典型用法代码示例。如果您正苦于以下问题:C++ CppAD::Parameter方法的具体用法?C++ CppAD::Parameter怎么用?C++ CppAD::Parameter使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CppAD
的用法示例。
在下文中一共展示了CppAD::Parameter方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ParVar
bool ParVar(void)
{ bool ok = true;
using CppAD::AD;
using CppAD::VecAD;
using CppAD::Parameter;
using CppAD::Variable;
// declare independent variables and start tape recording
size_t n = 1;
CPPAD_TESTVECTOR(AD<double>) x(n);
x[0] = 0.;
ok &= Parameter(x[0]); // x[0] is a paraemter here
CppAD::Independent(x);
ok &= Variable(x[0]); // now x[0] is a variable
// dependent variable vector
size_t m = 2;
CPPAD_TESTVECTOR(AD<double>) y(m);
y[0] = 2.;
ok &= Parameter(y[0]); // y[0] does not depend on x[0]
y[1] = abs(x[0]);
ok &= Variable(y[1]); // y[1] does depends on x[0]
// VecAD objects
VecAD<double> z(2);
z[0] = 0.;
z[1] = 1.;
ok &= Parameter(z); // z does not depend on x[0]
z[x[0]] = 2.;
ok &= Variable(z); // z depends on x[0]
// create f: x -> y and stop tape recording
CppAD::ADFun<double> f(x, y);
// check that now all AD<double> objects are parameters
ok &= Parameter(x[0]); ok &= ! Variable(x[0]);
ok &= Parameter(y[0]); ok &= ! Variable(y[0]);
ok &= Parameter(y[1]); ok &= ! Variable(y[1]);
// check that the VecAD<double> object is a parameter
ok &= Parameter(z);
return ok;
}