binius_circuits/arithmetic/
mod.rs

1// Copyright 2024-2025 Irreducible Inc.
2
3pub mod mul;
4pub mod static_exp;
5pub mod u32;
6
7/// Whether to allow or disallow arithmetic overflow
8#[derive(Debug, Clone, Copy)]
9pub enum Flags {
10	Checked,
11	Unchecked,
12}