Enum kimchi_msm::columns::Column
source · pub enum Column<T> {
Relation(T),
DynamicSelector(usize),
FixedSelector(usize),
LookupPartialSum((u32, usize)),
LookupMultiplicity((u32, usize)),
LookupAggregation,
LookupFixedTable(u32),
}
Expand description
Describe a generic indexed variable X_{i}.
Variants§
Relation(T)
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<usize>
impl FormattedOutput for Column<usize>
source§impl<T: PartialEq> PartialEq<Column<T>> for Column<T>
impl<T: PartialEq> PartialEq<Column<T>> for Column<T>
impl<T: Copy> Copy for Column<T>
impl<T: Eq> Eq for Column<T>
impl<T> StructuralEq for Column<T>
impl<T> StructuralPartialEq for Column<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Column<T>where T: RefUnwindSafe,
impl<T> Send for Column<T>where T: Send,
impl<T> Sync for Column<T>where T: Sync,
impl<T> Unpin for Column<T>where T: Unpin,
impl<T> UnwindSafe for Column<T>where T: UnwindSafe,
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