Skip to content

Commit a2b035f

Browse files
committed
refactor: remaining fixes in mpcs and whir crates
1 parent 561a525 commit a2b035f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

crates/mpcs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ nightly-features = [
4242
"whir/nightly-features",
4343
"witness/nightly-features",
4444
]
45-
parallel = ["p3-maybe-rayon/parallel","dep:rayon"]
45+
parallel = ["p3-maybe-rayon/parallel", "dep:rayon"]
4646
print-trace = ["whir/print-trace"]
4747
sanity-check = []
4848

crates/mpcs/src/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ pub(crate) fn codeword_fold_with_challenge<E: ExtensionField>(
101101
lo + challenge * (hi - lo)
102102
}
103103

104-
#[cfg(any(test))]
104+
#[cfg(test)]
105105
pub mod test {
106106
use ff_ext::FromUniformBytes;
107107
use rand::{

crates/whir/src/sumcheck/prover_single.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
use super::proof::SumcheckPolynomial;
22

33
use ff_ext::ExtensionField;
4-
#[cfg(feature = "parallel")]
5-
use p3::maybe_rayon::prelude::join;
64
use p3::{maybe_rayon::prelude::*, util::log2_strict_usize};
75

86
pub struct SumcheckSingle<E: ExtensionField> {

0 commit comments

Comments
 (0)