mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-11 18:23:09 +00:00
22 lines
410 B
Rust
22 lines
410 B
Rust
// Gates have `new` methods that return `GateRef`s.
|
|
#![allow(clippy::new_ret_no_self)]
|
|
|
|
pub mod arithmetic;
|
|
pub mod base_sum;
|
|
pub mod comparison;
|
|
pub mod constant;
|
|
pub mod exponentiation;
|
|
pub mod gate;
|
|
pub mod gate_tree;
|
|
pub mod gmimc;
|
|
pub mod insertion;
|
|
pub mod interpolation;
|
|
pub mod noop;
|
|
pub(crate) mod public_input;
|
|
pub mod random_access;
|
|
pub mod reducing;
|
|
pub mod switch;
|
|
|
|
#[cfg(test)]
|
|
mod gate_testing;
|