HarrisonGrodin / HarrisonGrodin/Simplify.jl
Improvements to intermediate numerical evaluation
Open
improvement
- Dominant language
- Julia
- Stars
- 83
- Forks
- 6
- PR merge metrics
- No merged PRs in 30d
Description
One can do things like
```julia
julia> normalize(@term 10*10)
@term(100)
```
and have the answer simplified but it seems to not with with non-unity exponents:
```julia
julia> normalize(@term 10^2)
@term(10 ^ 2)
julia> normalize(@term 10^1)
@term(10)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.