halo2_base/gates/mod.rs
1/// Module providing tools to create a circuit using our gates
2pub mod circuit;
3/// Module implementing our simple custom gate and common functions using it
4pub mod flex_gate;
5/// Module using a single lookup table for range checks
6pub mod range;
7
8/// Tests
9#[cfg(test)]
10pub mod tests;
11
12pub use flex_gate::{GateChip, GateInstructions};
13pub use range::{RangeChip, RangeInstructions};