Hi,
in which namespace do the ADOL-C math functions live, for example how
do I get the line below starting with y2 = ... working ?
#include <adolc/adolc.h>
int main() {
adouble x(3.0);
adouble y = sin(x); // ok
adouble y2 = ::sin(x); // not ok
return 0;
}
Thanks a lot
Peter