lilium-sumcheck 0.1.0

generic Sumcheck implementation for Lilium
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Multivariate polynomial computation and optimal evaluation
//! Intended for for multivariate polynomials where the variables are
//! univariate polynomials

pub mod compute;
pub mod evaluate;
pub mod expression;
pub(crate) mod id_map;
pub mod message_eval;
pub mod sumcheck_eval;
#[cfg(test)]
mod test;