Skip to content

Commit

Permalink
rm comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ColoCarletti committed Nov 11, 2024
1 parent 82b4b5e commit 773550e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions provers/stark/src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,6 @@ impl<'t, F: IsField> Table<F> {
&self.data[row_offset..row_offset + self.width]
}

// /// Given a row index, returns a mutable reference to that row as a slice of field elements.
// pub fn get_row_mut(&mut self, row_idx: usize) -> &mut [FieldElement<F>] {
// let n_cols = self.width;
// let row_offset = row_idx * n_cols;
// &mut self.data[row_offset..row_offset + n_cols]
// }

/// Given a slice of field elements representing a row, appends it to
/// the end of the table.
pub fn append_row(&mut self, row: &[FieldElement<F>]) {
Expand Down

0 comments on commit 773550e

Please sign in to comment.