Skip to main content

miden_air/constraints/range/
columns.rs

1/// Range check columns in the main execution trace (2 columns).
2#[repr(C)]
3#[derive(Debug, Clone, Default)]
4pub struct RangeCols<T> {
5    /// Multiplicity: how many times this value is range-checked.
6    pub multiplicity: T,
7    /// The value being range-checked.
8    pub value: T,
9}