From df10b3891202df4fbc2986703de32bd286417e3a Mon Sep 17 00:00:00 2001 From: Ray Gao Date: Wed, 12 Feb 2025 18:26:14 -0500 Subject: [PATCH] Remove debug blocks: --- spartan_parallel/src/dense_mlpoly.rs | 10 ---------- spartan_parallel/src/sumcheck.rs | 1 - 2 files changed, 11 deletions(-) diff --git a/spartan_parallel/src/dense_mlpoly.rs b/spartan_parallel/src/dense_mlpoly.rs index bdb6cd5b..5e04c3b6 100644 --- a/spartan_parallel/src/dense_mlpoly.rs +++ b/spartan_parallel/src/dense_mlpoly.rs @@ -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 { - num_vars: usize, // the number of variables in the multilinear polynomial - len: usize, - Z: Vec, // evaluations of the polynomial in all the 2^num_vars Boolean inputs -} -*/ - pub struct EqPolynomial { r: Vec, } diff --git a/spartan_parallel/src/sumcheck.rs b/spartan_parallel/src/sumcheck.rs index a5cbb13a..4e3d3b39 100644 --- a/spartan_parallel/src/sumcheck.rs +++ b/spartan_parallel/src/sumcheck.rs @@ -69,7 +69,6 @@ impl SumcheckInstanceProof { } impl SumcheckInstanceProof { - // _debug: remove native sumcheck prover pub fn prove_cubic( claim: &E, num_rounds: usize,