Enum kimchi_msm::columns::Column
source · pub enum Column {
Relation(usize),
DynamicSelector(usize),
FixedSelector(usize),
LookupPartialSum((u32, usize)),
LookupMultiplicity((u32, usize)),
LookupAggregation,
LookupFixedTable(u32),
}
Expand description
Describe a generic indexed variable X_{i}.
Variants§
Relation(usize)
Columns related to the relation encoded in the circuit
DynamicSelector(usize)
Columns related to dynamic selectors to indicate gate type
FixedSelector(usize)
Constant column that is /always/ fixed for a given circuit.
LookupPartialSum((u32, usize))
Partial sums. This corresponds to the h_i
.
It is first indexed by the table ID, and after that internal index.
LookupMultiplicity((u32, usize))
Multiplicities, indexed. This corresponds to the m_i
. First
indexed by table ID, then internal index.
LookupAggregation
The lookup aggregation, i.e. phi
LookupFixedTable(u32)
The fixed tables. The parameter is considered to the indexed table.
Implementations§
Trait Implementations§
source§impl FormattedOutput for Column
impl FormattedOutput for Column
source§impl PartialEq<Column> for Column
impl PartialEq<Column> for Column
impl Copy for Column
impl Eq for Column
impl StructuralEq for Column
impl StructuralPartialEq for Column
Auto Trait Implementations§
impl RefUnwindSafe for Column
impl Send for Column
impl Sync for Column
impl Unpin for Column
impl UnwindSafe for Column
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more