Skip to content

Commit

Permalink
chore: submit memory prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
eigmax committed Oct 14, 2023
1 parent e26947a commit 3255e0b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/all_stark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ impl<F: RichField + Extendable<D>, const D: usize> AllStark<F, D> {

#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum Table {
// Arithmetic = 0,
// BytePacking = 1,
// Arithmetic = 0,
// BytePacking = 1,
Cpu = 0,
Keccak = 1,
KeccakSponge = 2,
Expand All @@ -80,8 +80,8 @@ pub(crate) const NUM_TABLES: usize = Table::Memory as usize + 1;
impl Table {
pub(crate) fn all() -> [Self; NUM_TABLES] {
[
// Self::Arithmetic,
// Self::BytePacking,
// Self::Arithmetic,
// Self::BytePacking,
Self::Cpu,
Self::Keccak,
Self::KeccakSponge,
Expand Down

0 comments on commit 3255e0b

Please sign in to comment.