You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Symbolics
using SymbolicNumericIntegration
using SymbolicUtils
@syms x
expr=x*Symbolics.Term(exp,[1])
julia> SymbolicNumericIntegration.integrate(expr,x)
(1.3591409142295223(x^2), 0, 2.220446049250313e-16)
As can be seen, exp(1) before the call remained exp(1) because of using Symbolics.Term(exp,[1]) to prevent evaluation.
But inside/during the call SymbolicNumericIntegration.integrate it was converted at one point to floating point.
Is there a way to keep it as exp(1) so the result should be exp(1)*x^2/2 ?