diff --git a/crates/brainfuck_prover/src/components/memory/table.rs b/crates/brainfuck_prover/src/components/memory/table.rs index 337b6db..3e4b631 100644 --- a/crates/brainfuck_prover/src/components/memory/table.rs +++ b/crates/brainfuck_prover/src/components/memory/table.rs @@ -249,10 +249,10 @@ impl MemoryColumn { /// Returns the index of the column in the Memory table pub const fn index(self) -> usize { match self { - MemoryColumn::Clk => 0, - MemoryColumn::Mp => 1, - MemoryColumn::Mv => 2, - MemoryColumn::D => 3, + Self::Clk => 0, + Self::Mp => 1, + Self::Mv => 2, + Self::D => 3, } }