Open eswagel opened 1 year ago
I'm using build_function to convert a Symbolics expression to a C function. The symbolic expression includes rationals, for example 1//2. These are converted verbatim to C, where they become comments rather than division.
build_function
1//2
is the correct output /?
/
I think that's best so you don't have to include anything in C.
I'm using
build_function
to convert a Symbolics expression to a C function. The symbolic expression includes rationals, for example1//2
. These are converted verbatim to C, where they become comments rather than division.