This PR adds an extension for SymbolicUtils. With this loaded, the rewriting rules of SymbolicUtils can be used, which should expand the feature set of SymEngine.jl.
julia> using SymEngine, SymbolicUtils
@
julia> @vars x y
(x, y)
julia> simplify(sin(x)^2 + cos(x)^2)
1
This PR adds an extension for
SymbolicUtils
. With this loaded, the rewriting rules ofSymbolicUtils
can be used, which should expand the feature set ofSymEngine.jl
.