1 2 3 4 5 6 7 8 9 10 11 12 13
/// Module that helps auto-build circuits
pub mod builder;
/// 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};