Brad Bell
Brad Bell
Sometimes when I think there is a problem with a package, and I try to create a simple example demonstrating the problem, I realize that it was a mistake in...
Sorry for the slow response. I must have missed the e-mail informing me of this issue. I have tried to reproduce this error (on a Fedora 33 system) and cannot....
@Saelyos Do you get the error if you use the master branch ?
I changed my loop to execute 10,000 times: ``` cppad.git>git diff diff --git a/example/sparse/sparse.cpp b/example/sparse/sparse.cpp index e9bf09f5b..cddacaa29 100644 --- a/example/sparse/sparse.cpp +++ b/example/sparse/sparse.cpp @@ -64,6 +64,10 @@ int main(void) CppAD::test_boolofvoid Run(group,...
It seems that three things are going on here: 1. Change the CppAD top level CmakeLists.txt so that FIND_PACKAGE( cppad ... ) and TARGET_LINK_LIBRARIES( cppad ... ) work ? 2....
Just for eigen changes (item 3 above): Would you please make a new pull request that includes an automated test that fails with the current master but passes with the...
I have merged pull request 155 (which corresponds to item 3 above). Would you please remove the corresponding parts of this pull request, so that it only implements item 1...
The package config file installed by Eigen is `egen3.pc` so I do not understand why you are changing `pkgconfig_info(eigen3 ${system_include} ${remove_coin_or})` to `pkgconfig_info(Eigen3 ${system_include} ${remove_coin_or})`
1. I think we should also change `SET(eigen_LIBRARIES "${Eigen3_LIBRARIES}")` to `SET(eigen_LIBRARIES "${eigen3_LIBRARIES}")` Now that I think about it, this setting should probably be removed. 3. I do not know where...
Are you trying to accomplish something that is not supported by the current CppAD cmake command ? https://coin-or.github.io/CppAD/doc/cmake.htm If so, can you provide a workflow in https://github.com/coin-or/CppAD/tree/master/.github/workflows that fails with...