Skip to content

Commit

Permalink
Add missing tables to all_auxiliary_columns
Browse files Browse the repository at this point in the history
  • Loading branch information
hratoanina committed Jul 16, 2024
1 parent 9472223 commit 29b7ce4
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions evm_arithmetization/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ use crate::keccak_sponge::keccak_sponge_stark::KeccakSpongeStark;
use crate::logic::LogicStark;
use crate::memory::memory_stark::MemoryStark;
use crate::memory::segments::Segment;
use crate::memory_continuation::memory_continuation_stark::MemoryContinuationStark;
use crate::proof::{AllProof, MemCap, PublicValues, RegistersData};
use crate::witness::memory::{MemoryAddress, MemoryState};
use crate::witness::state::RegistersState;
Expand Down Expand Up @@ -649,6 +650,34 @@ where
),
);

// MemBefore.
res.push(auxiliary_columns_single_stark::<
F,
C,
MemoryContinuationStark<F, D>,
D,
>(
all_stark.mem_before_stark,
config,
&trace_poly_values[*Table::MemBefore],
&ctl_data_per_table[*Table::MemBefore],
ctl_challenges,
));

// MemAfter.
res.push(auxiliary_columns_single_stark::<
F,
C,
MemoryContinuationStark<F, D>,
D,
>(
all_stark.mem_before_stark,
config,
&trace_poly_values[*Table::MemAfter],
&ctl_data_per_table[*Table::MemAfter],
ctl_challenges,
));

res
}

Expand Down

0 comments on commit 29b7ce4

Please sign in to comment.