halo2_base/gates/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
/// Module providing tools to create a circuit using our gates
pub mod circuit;
/// Module implementing our simple custom gate and common functions using it
pub mod flex_gate;
/// Module using a single lookup table for range checks
pub mod range;

/// Tests
#[cfg(test)]
pub mod tests;

pub use flex_gate::{GateChip, GateInstructions};
pub use range::{RangeChip, RangeInstructions};