plonky2/src/plonk/mod.rs
Daniel Lubarov 018fb005f8
Move stuff around (#135)
No functional changes here. The biggest change was moving certain files into new directories like `plonk` and `iop` (for things like `Challenger` that could be used in STARKs or other IOPs). I also split a few files, renames, etc, but again nothing functional, so I don't think a careful review is necessary (just a sanity check).
2021-07-29 22:00:29 -07:00

12 lines
267 B
Rust

pub mod circuit_builder;
pub mod circuit_data;
pub(crate) mod copy_constraint;
pub(crate) mod permutation_argument;
pub(crate) mod plonk_common;
pub mod proof;
pub mod prover;
pub mod recursive_verifier;
pub(crate) mod vanishing_poly;
pub mod vars;
pub mod verifier;