Modules
- Range check table
Structs
- Enumerates the different ‘fixed’ lookup tables used by individual gates
- A table of values that can be used for a lookup, along with the ID for the table.
Enums
- Enumerates the different ‘fixed’ lookup tables used by individual gates
Constants
- The range check table ID.
- The table ID associated with the XOR lookup table.
Functions
- Same as
combine_table_entry
, but for an entire table. The function will panic if given an empty table (0 columns). - Let’s say we want to do a lookup in a “vector-valued” table
T: Vec<[F; n]>
(here I am using[F; n]
to model a vector of lengthn
). - Returns the lookup table associated to a
GateLookupTable
.