Closed jeong0982 closed 9 months ago
To optimize the performance of verifier, add polynomial expression and new format of multilinear polynomial (it can be used for general multivariate polynomial as well)
pub enum PolyExpr<F> { Const(F), Var(usize), Sum(Vec<PolyExpr<F>>), Prod(Vec<PolyExpr<F>>), Pow(Box<PolyExpr<F>>, u32), }
subtable_poly: MultilinearPolynomial
subtable_poly: MultilinearPolynomialTerms
Description
To optimize the performance of verifier, add polynomial expression and new format of multilinear polynomial (it can be used for general multivariate polynomial as well)
Remaining works
subtable_poly: MultilinearPolynomial
withsubtable_poly: MultilinearPolynomialTerms
Related issue
10