29 #ifndef DINAMICA_DA_T_H_ 30 #define DINAMICA_DA_T_H_ 41 template<
class T> T
DA::eval(
const std::vector<T> &args)
const{
58 template<
class T> T
DA::eval(
const T args[],
const unsigned int length)
const{
84 template<
class T> T
eval(
const DA &da,
const std::vector<T> &args) {
102 template<
class T> T
eval(
const DA &da,
const T args[],
const unsigned int length) {
114 return da.
eval(args,length);
T eval(const std::vector< T > &args) const
Evaluation with a vector of arguments (not efficient for repeated evaluation!)
Definition: DA_t.h:41
Definition: AlgebraicMatrix.cpp:39
friend class compiledDA
Definition: DA.h:59
T evalScalar(const T &arg) const
Evaluation with a single arithmetic type T argument (not efficient for repeated evaluation!) ...
Definition: DA_t.h:72