Skip to content

Commit

Permalink
Fix copy-paste typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmr1993 committed Jan 12, 2025
1 parent adf5727 commit 487e282
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions o1vm/src/pickles/column_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,7 @@ impl<G> WitnessColumns<G, [G; N_MIPS_SEL_COLS]> {
match *col {
Column::Relation(i) => match i {
RelationColumnType::Scratch(i) => Some(&self.scratch[i]),
RelationColumnType::ScratchInverse(i) => {
Some(&self.scratch_inverse[i - SCRATCH_SIZE])
}
RelationColumnType::ScratchInverse(i) => Some(&self.scratch_inverse[i]),
RelationColumnType::LookupState(_) => todo!(),
RelationColumnType::InstructionCounter => Some(&self.instruction_counter),
RelationColumnType::Error => Some(&self.error),
Expand Down

0 comments on commit 487e282

Please sign in to comment.