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.
6pub multiplicity: T,
7/// The value being range-checked.
8pub value: T,
9}