StaticPolynomials.jl
StaticPolynomials.jl copied to clipboard
Fast evaluation of multivariate polynomials
Sometimes, it is convenient to create an empty polynomial system (for example, in my case the input polynomials are of two possible kinds, each will be assembled into a `PolynomialSystem`,...
Great package. I am currently using the `TypedPolynomials` package for the construction of polynomials, as it is the most performant in my use case. However, a straight froward conversion to...
Hi, thanks for the great package! I noticed, that evaluating a `PolynomialSystem` at a `SVector` returns an `SVector`, but the same does not hold true for `SizedVector` or `MVector`. I...
If I try to use StaticPolynomials on a polynomial with a large degree (10000), it fails because sexponent uses a representation with UInt8. Why this limitation?
You're receiving this pull request because the now-deprecated [Julia TagBot GitHub App](https://github.com/apps/julia-tagbot) is installed for this repository. This pull request installs [TagBot as a GitHub Action](https://github.com/marketplace/actions/julia-tagbot). If this PR does...
To improve the speed of `evaluate` it would be great to use the naive polynomial form and apply common subexpression elimination on it. This can be done either by *...