Shashi Gowda
Shashi Gowda
It would be nice if DP automatically promoted coefficients to big nums when they are too big to fit in Int. See ```julia julia> @polyvar x y (x, y) julia>...
```julia julia> using DynamicPolynomials julia> @polyvar a b (a, b) julia> julia> gcd(im*a, a) ERROR: MethodError: no method matching gcd(::Complex{Bool}, ::Complex{Bool}) Closest candidates are: gcd(::AbstractPolynomialLike, ::Any) at /home/shashi/.julia/dev/MultivariatePolynomials/src/gcd.jl:50 gcd(::AbstractPolynomialLike, ::Any,...
For indexing distributed arrays, there are two invariants to think of: 1. A DArray is a chain of subarrays 2. The subarrays are on other processes Maybe the indexes are...
I am very interested in using some of the functions in this library, especially `PowerSpectrum` and `PowerSpectrumVariance`. This looks like a very useful library in general. It would be nice...
It could be cool to have rules like: ```julia @rule let ~assignments1 let ~assignments2 ~body end end => let vcat(~assignments1, ~assignments2)... ~body end ``` Where `let` maps to `SymbolicUtils.Code.Let(assignments, body)`,...
Is this supposed to work? ```julia julia> f = @RuntimeGeneratedFunction(:(f(x,z=3) = y)) ERROR: argument malformed. Got $(Expr(:kw, :z, 3)) Stacktrace: [1] error(s::String) @ Base ./error.jl:33 ``` Can it be made...