This crate implements traits and implementations for polynomials, FFT-friendly subsets of a field (dubbed "domains"), and FFTs for these domains.
Polynomials
The polynomial module provides the following traits for defining polynomials in coefficient form:
Polynomial: Requires implementors to support common operations on polynomials, such asAdd,Sub,Zero, evaluation at a point, degree, etc, and defines methods to serialize to and from the coefficient representation of the polynomial.DenseUVPolynomial: Specifies that aPolynomialis actually a univariate polynomial.DenseMVPolynomial: Specifies that aPolynomialis actually a multivariate polynomial.
This crate also provides the following data structures that implement these traits:
univariate/DensePolynomial: Represents degreedunivariate polynomials via a list ofd + 1coefficients. This struct implements theDenseUVPolynomialtrait.univariate/SparsePolynomial: Represents degreedunivariate polynomials via a list containing all non-zero monomials. This should only be used when most coefficients of the polynomial are zero. This struct implements thePolynomialtrait (but not theDenseUVPolynomialtrait).multivariate/SparsePolynomial: Represents multivariate polynomials via a list containing all non-zero monomials.
This crate also provides the univariate/DenseOrSparsePolynomial enum, which allows the user to abstract over the type of underlying univariate polynomial (dense or sparse).
Evaluations
The evaluations module provides data structures to represent univariate polynomials in lagrange form.
univariate/EvaluationsRepresents a univariate polynomial in evaluation form, which can be used for FFT.
The evaluations module also provides the following traits for defining multivariate polynomials in lagrange form:
multivariate/multilinear/MultilinearExtensionSpecifies a multilinear polynomial evaluated over boolean hypercube.
This crate provides some data structures to implement these traits.
-
multivariate/multilinear/DenseMultilinearExtensionRepresents multilinear extension via a list of evaluations over boolean hypercube. -
multivariate/multilinear/SparseMultilinearExtensionRepresents multilinear extension via a list of non-zero evaluations over boolean hypercube.
Domains
TODO