Skip to content

Commit

Permalink
chore: remove dead code (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibmp33 authored Apr 26, 2024
1 parent 571b266 commit 87b5fe3
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions starky/src/stark_setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ impl<M: MerkleTree> StarkSetup<M> {
let nBitsExt = stark_struct.nBitsExt;
assert_eq!(const_pol.nPols, pil.nConstants);

let mut p: Vec<Vec<FGL>> = vec![Vec::new(); const_pol.nPols];
for i in 0..const_pol.nPols {
p[i] = vec![FGL::ZERO; const_pol.n];
p[i].par_iter_mut().enumerate().for_each(|(j, out)| {
*out = const_pol.array[i][j];
});
}

log::trace!("Write const pol buff and interpolate");
let const_buff = const_pol.write_buff();
//extend and merkelize
Expand Down

0 comments on commit 87b5fe3

Please sign in to comment.