Skip to content

Commit

Permalink
Remove debug blocks:
Browse files Browse the repository at this point in the history
  • Loading branch information
darth-cy committed Feb 12, 2025
1 parent aaa997a commit df10b38
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
10 changes: 0 additions & 10 deletions spartan_parallel/src/dense_mlpoly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,6 @@ use rayon::{iter::ParallelIterator, slice::ParallelSliceMut};
use serde::{Deserialize, Serialize};
use std::cmp::min;

// _debug
/*
#[derive(Debug, Clone)]
pub struct DensePolynomial<E: ExtensionField> {
num_vars: usize, // the number of variables in the multilinear polynomial
len: usize,
Z: Vec<E>, // evaluations of the polynomial in all the 2^num_vars Boolean inputs
}
*/

pub struct EqPolynomial<E: ExtensionField> {
r: Vec<E>,
}
Expand Down
1 change: 0 additions & 1 deletion spartan_parallel/src/sumcheck.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ impl<E: ExtensionField> SumcheckInstanceProof<E> {
}

impl<E: ExtensionField> SumcheckInstanceProof<E> {
// _debug: remove native sumcheck prover
pub fn prove_cubic<F>(
claim: &E,
num_rounds: usize,
Expand Down

0 comments on commit df10b38

Please sign in to comment.