Enum LookupTable

Source
pub enum LookupTable<Ff> {
    RangeCheck15,
    RangeCheck4,
    RangeCheck14Abs,
    RangeCheck9Abs,
    RangeCheckFfHighest(PhantomData<Ff>),
    MultiplicationBus,
}
Expand description

Enumeration of concrete lookup tables used in serialization circuit.

Variants§

§

RangeCheck15

x ∈ [0, 2^15]

§

RangeCheck4

x ∈ [0, 2^4]

§

RangeCheck14Abs

x ∈ [-2^14, 2^14-1]

§

RangeCheck9Abs

x ∈ [-2^4, 2^4-1]

§

RangeCheckFfHighest(PhantomData<Ff>)

x ∈ [0, ff_highest] where ff_highest is the highest 15-bit limb of the modulus of the foreign field Ff.

§

MultiplicationBus

Communication bus for the multiplication circuit.

Implementations§

Source§

impl<Ff: PrimeField> LookupTable<Ff>

Source

pub fn entries<F: PrimeField>(&self, domain_d1_size: u64) -> Option<Vec<F>>

Provides a full list of entries for the given table.

Source

pub fn is_member<F: PrimeField>(&self, value: F) -> Option<bool>

Checks if a value is in a given table.

Trait Implementations§

Source§

impl<Ff: Clone> Clone for LookupTable<Ff>

Source§

fn clone(&self) -> LookupTable<Ff>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Ff: Debug> Debug for LookupTable<Ff>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Ff: Hash> Hash for LookupTable<Ff>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<Ff> IntoEnumIterator for LookupTable<Ff>

Source§

impl<Ff: PrimeField> LookupTableID for LookupTable<Ff>

Source§

fn ix_by_value<F: PrimeField>(&self, value: &[F]) -> Option<usize>

Converts a value to its index in the fixed table.

Source§

fn to_u32(&self) -> u32

Assign a unique ID, as a u32 value
Source§

fn from_u32(value: u32) -> Self

Build a value from a u32
Source§

fn is_fixed(&self) -> bool

Identify fixed and RAMLookups with a boolean. This can be used to identify the lookups whose table values are fixed, like range checks.
Source§

fn runtime_create_column(&self) -> bool

If a table is runtime table, true means we should create an explicit extra column for it to “read” from. false means that this table will be reading from some existing (e.g. relation) columns, and no extra columns should be added. Read more
Source§

fn length(&self) -> usize

Returns the length of each table.
Source§

fn all_variants() -> Vec<Self>

Source§

fn to_field<F: Field>(&self) -> F

Assign a unique ID to the lookup tables.
Source§

fn to_constraint<F: Field>(&self) -> E<F>

Assign a unique ID to the lookup tables, as an expression.
Source§

impl<Ff: Ord> Ord for LookupTable<Ff>

Source§

fn cmp(&self, other: &LookupTable<Ff>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<Ff: PartialEq> PartialEq for LookupTable<Ff>

Source§

fn eq(&self, other: &LookupTable<Ff>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<Ff: PartialOrd> PartialOrd for LookupTable<Ff>

Source§

fn partial_cmp(&self, other: &LookupTable<Ff>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<Ff: Copy> Copy for LookupTable<Ff>

Source§

impl<Ff: Eq> Eq for LookupTable<Ff>

Source§

impl<Ff> StructuralPartialEq for LookupTable<Ff>

Auto Trait Implementations§

§

impl<Ff> Freeze for LookupTable<Ff>

§

impl<Ff> RefUnwindSafe for LookupTable<Ff>
where Ff: RefUnwindSafe,

§

impl<Ff> Send for LookupTable<Ff>
where Ff: Send,

§

impl<Ff> Sync for LookupTable<Ff>
where Ff: Sync,

§

impl<Ff> Unpin for LookupTable<Ff>
where Ff: Unpin,

§

impl<Ff> UnwindSafe for LookupTable<Ff>
where Ff: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V