-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running the test program Jacobian module listwith cppAD library gives a lot of errors #85
Comments
icpc -o test3.run test3.cpp |
My code is int main(){ size_t n = 1; CppAD::vector<CppAD::AD> X(n); Y[0] = CppAD::sin(X[0]); CppAD::ADFun f(X,Y); CppAD::vector x(n); x[0] = 0.5; jac = f.Jacobian(x); return 0; } |
Perhaps the following discussions will help ? |
Good morning, Bradbell! Thank you so much for your links, they are somewhat helpful, but I still have a question Do I miss something? I can see the cppad.hpp file in ../include/cppad/ directory and ../include/cppad/local/temp_file.hpp Do you have a quick check to find if all the libraries have properly linked ? Thank you so much in advance. |
I suggest that you find where CppADCodeGen has stored its pkg-config file. For example Let subdir be the sub-directory where the cppadcg.pc file is stored and set Then execute the command |
Thank you so much it worked, by the way, there is no cppadcg.pc file, |
Hey guys,
I need your help! I am new to the library.
Installing the library like
cmake ..
make install
seems working file but when I run the test file I am getting the following.
The text was updated successfully, but these errors were encountered: