wborgeaud b65e792ff3 - Remove useless rotation gadgets
- rotate.rs -> select.rs
- Added `select()` and `select_ext`
- Optimize to use just one gate
2021-07-22 11:58:29 +02:00

11 lines
207 B
Rust

pub mod arithmetic;
pub mod arithmetic_extension;
pub mod hash;
pub mod insert;
pub mod interpolation;
pub mod polynomial;
pub mod range_check;
pub mod select;
pub mod split_base;
pub(crate) mod split_join;