Skip to content

Commit

Permalink
row() -> get()
Browse files Browse the repository at this point in the history
  • Loading branch information
plafer committed Mar 12, 2024
1 parent 3e9062e commit cc4ef88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prover/src/trace/trace_lde/default/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ where
let shift = self.blowup() * 2_u32.pow(i as u32) as usize;
let next_lde_step = (lde_step + shift) % self.trace_len();

frame.push(aux_segment.row(next_lde_step)[lagrange_kernel_aux_column_idx]);
frame.push(aux_segment.get(lagrange_kernel_aux_column_idx, next_lde_step));
}

LagrangeKernelEvaluationFrame::new(frame)
Expand Down

0 comments on commit cc4ef88

Please sign in to comment.