We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddc4788 commit 4957b35Copy full SHA for 4957b35
1 file changed
src/cppad.cpp
@@ -2,6 +2,10 @@
2
* Copyright 2021 INRIA
3
*/
4
5
+#ifdef PYCPPAD_BUILD_CPPAD_CODEGEN_BINDINGS
6
+#include "pycppad/codegen/cppadcg-scalar.hpp"
7
+#endif
8
+
9
#include "pycppad/cppad.hpp"
10
#include "pycppad/cppad-scalar.hpp"
11
@@ -12,6 +16,10 @@ namespace pycppad
12
16
void enablePyCppAD()
13
17
{
14
18
exposeCppADScalar<double>();
15
- //exposeCppADScalar<float>();
19
20
21
+ codegen::exposeCppADCGScalar<double>();
22
23
24
}
25
0 commit comments