1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![forbid(unsafe_code)]
#![cfg_attr(not(feature = "std"), no_std)]
//! A crate for sumcheck protocol of GKR functions
#![deny(unused_import_braces, unused_qualifications, trivial_casts)]
#![deny(trivial_numeric_casts, variant_size_differences)]
#![deny(stable_features, unreachable_pub, non_shorthand_field_patterns)]
#![deny(unused_attributes, unused_mut)]
#![deny(missing_docs)]
#![deny(unused_imports)]
#![deny(renamed_and_removed_lints, stable_features, unused_allocation)]
#![deny(unused_comparisons, bare_trait_objects, unused_must_use)]

pub use error::Error;

/// use ark_std for std
#[macro_use]
extern crate ark_std;

/// error for this crate
mod error;

pub mod gkr_round_sumcheck;
pub mod ml_sumcheck;

pub mod rng;

#[cfg(test)]
mod tests {}