use slop_algebra::PrimeField;
mod arithmetic;
mod bits;
mod builder;
mod instructions;
mod iter;
mod symbolic;
mod types;
mod utils;
mod var;
pub(crate) use arithmetic::*;
pub use builder::*;
pub use instructions::*;
pub use iter::*;
pub use symbolic::*;
pub use types::*;
pub use var::*;
pub trait Config: Clone + Default + std::fmt::Debug {
type N: PrimeField;
fn initialize(_: &mut Builder<Self>) {}
}