Skip to content

Commit a19259d

Browse files
committed
CI
1 parent 68e60e4 commit a19259d

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/ntt/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ mod tests {
267267
let poly = CoefficientList::new((0..count).map(|_| Field64::rand(&mut rng)).collect());
268268

269269
// Compute things the old way
270-
let mut expected = test_utils::expand_from_coeff(&poly.coeffs(), expansion);
270+
let mut expected = test_utils::expand_from_coeff(poly.coeffs(), expansion);
271271
test_utils::transform_evaluations(
272272
&mut expected,
273273
eval_domain.group_gen_inv(),

src/whir/committer/writer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ where
4141
pub const fn new(config: WhirConfig<F, MerkleConfig, PowStrategy>) -> Self {
4242
Self(config)
4343
}
44-
44+
#[allow(clippy::too_many_lines)]
4545
#[cfg_attr(feature = "tracing", instrument(skip_all, fields(size = polynomials.first().unwrap().num_coeffs())))]
4646
pub fn commit_batch<ProverState>(
4747
&self,

src/whir/prover.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ where
207207
// Fold the coefficients, and compute fft of polynomial (and commit)
208208
let new_domain = round_state.domain.scale(2);
209209
let expansion = new_domain.size() / folded_coefficients.num_coeffs();
210+
#[allow(clippy::cloned_ref_to_slice_refs)]
210211
let evals = interleaved_rs_encode(
211212
&[folded_coefficients.clone()],
212213
expansion,

0 commit comments

Comments
 (0)