slop-sumcheck 6.1.0

Sumcheck protocol implementation for multilinear polynomials
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::disallowed_types)]
mod backend;
mod mle;
mod poly;
mod proof;
mod prover;
mod verifier;

pub use backend::*;
pub use poly::*;
pub use proof::*;
pub use prover::*;
pub use verifier::*;