Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Nov 21, 2024
1 parent e66f397 commit 684c242
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl InstructionTable {

// Initialize a trace with 3 columns (for `ip`, `ci`, and `ni` registers),
// each column containing `2^log_size` entries initialized to zero.
let mut trace = vec![BaseColumn::zeros(1 << log_size); 3];
let mut trace = vec![BaseColumn::zeros(1 << log_size); InstructionColumn::count()];

// Populate the columns with data from the table rows.
// We iterate over the table rows and, for each row:
Expand Down

0 comments on commit 684c242

Please sign in to comment.