mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-06 15:53:10 +00:00
* Most gates support packed evaluation * ComparisonGate * Minor: outdated todo marker * Revert superfluous change * Post-merge fixes * Daniel comments * Minor: Markdown in comments
33 lines
683 B
Rust
33 lines
683 B
Rust
// Gates have `new` methods that return `GateRef`s.
|
|
#![allow(clippy::new_ret_no_self)]
|
|
|
|
pub mod arithmetic_base;
|
|
pub mod arithmetic_extension;
|
|
pub mod arithmetic_u32;
|
|
pub mod assert_le;
|
|
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 low_degree_interpolation;
|
|
pub mod multiplication_extension;
|
|
pub mod noop;
|
|
mod packed_util;
|
|
pub mod poseidon;
|
|
pub(crate) mod poseidon_mds;
|
|
pub(crate) mod public_input;
|
|
pub mod random_access;
|
|
pub mod reducing;
|
|
pub mod reducing_extension;
|
|
pub mod subtraction_u32;
|
|
pub mod switch;
|
|
mod util;
|
|
|
|
#[cfg(test)]
|
|
mod gate_testing;
|