SymbolicUtils.jl icon indicating copy to clipboard operation
SymbolicUtils.jl copied to clipboard

Symbolic expressions, rewriting and simplification

Results 175 SymbolicUtils.jl issues
Sort by recently updated
recently updated
newest added

A recent change (maybe PR #536 @YingboMa ?) causes functions produced by `build_function` to fail when called with symbolic variables: ```julia julia> @variables x 1-element Vector{Num}: x julia> f =...

Caught by the fuzzer ``` Weird bug here: d = Dict{Any, Rational{BigInt}}(a => 1//1, d => -2//1, g => -2//3, b => -1//1, e => 5//3, c => 2//1) r...

Have a macro ```julia @arithmetic_rule $(D(r)) * ~x => ... ``` such that it matches, `D(r) * a * b` with `~x` as `a*b` `(D(r) * b) / a` with...

Is there a way to convert an expression of type `BasicSymbolic{LiteralReal}` to type `BasicSymbolic{Real}`? If you point me in the right direction I could add this

Hey all, I am trying to build a direct interface in DynamicExpressions.jl to speed up simplification: https://github.com/SymbolicML/DynamicExpressions.jl/pull/42. I am seeing a stack overflow at the moment, even for null rule...

It would be useful for LaTeX output if one could associate a text string with each symbol as is done in sympy. Then the text strings could be LaTeX expressions...

Having `==` construct an equation might be a good idea if this package were a standalone CAS, like Mathematica. But it's meant to work with the larger Julia ecosystem. The...

Fix https://docs.sciml.ai/SymbolicUtils/.

It appears that the current release does not work on 32-bit machines. Is there any way this could get fixed? It seems to be something related to the hashing function...

Hello, after about 4 hours of debugging a version update of SymbolicUtils.jl today, I stumbled across [this commit](https://github.com/JuliaSymbolics/SymbolicUtils.jl/commit/50c266ce4c707eed5a35780a092bb8e57751fde8). It is my understanding that SymbolicUtils.jl is now working independently from TermInterface.jl...