binius_circuits/arithmetic/
mod.rs

1
2
3
4
5
6
7
8
9
10
// Copyright 2024-2025 Irreducible Inc.

pub mod u32;

/// Whether to allow or disallow arithmetic overflow
#[derive(Debug, Clone, Copy)]
pub enum Flags {
	Checked,
	Unchecked,
}