Modules§
- caml
- range_
check - Range check table
- xor
Structs§
- Gate
Lookup Tables - Enumerates the different ‘fixed’ lookup tables used by individual gates
- Lookup
Table - A table of values that can be used for a lookup, along with the ID for the table.
Enums§
- Gate
Lookup Table - Enumerates the different ‘fixed’ lookup tables used by individual gates
Constants§
- RANGE_
CHECK_ TABLE_ ID - The range check table ID.
- XOR_
TABLE_ ID - The table ID associated with the XOR lookup table.
Functions§
- combine_
table - Same as
combine_table_entry
, but for an entire table. The function will panic if given an empty table (0 columns). - combine_
table_ entry - 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
). - get_
table - Returns the lookup table associated to a
GateLookupTable
.