binius_core/protocols/sumcheck/v3/
mod.rs

1// Copyright 2025 Irreducible Inc.
2
3//! The V3 sumcheck module contains implementations of the sumcheck prover using the
4//! [`binius_compute`] crate.
5//!
6//! The V3 prover is fully compatible with the existing sumcheck protocol verifier, and is a change
7//! to the prover implementation. Once the V3 prover is fully integrated throughout the codebase,
8//! the current V2 prover will be removed.
9
10pub mod bivariate_mlecheck;
11pub mod bivariate_product;