mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-11 02:03:07 +00:00
cargo fix
This commit is contained in:
parent
04aaa172b2
commit
dadc1b2add
@ -208,7 +208,7 @@ impl<F: RichField + Extendable<D>, const D: usize> Gate<F, D> for U32ArithmeticG
|
||||
fn generators(
|
||||
&self,
|
||||
gate_index: usize,
|
||||
local_constants: &[F],
|
||||
_local_constants: &[F],
|
||||
) -> Vec<Box<dyn WitnessGenerator<F>>> {
|
||||
(0..NUM_U32_ARITHMETIC_OPS)
|
||||
.map(|i| {
|
||||
@ -328,7 +328,7 @@ mod tests {
|
||||
use std::marker::PhantomData;
|
||||
|
||||
use anyhow::Result;
|
||||
use itertools::{izip, unfold};
|
||||
|
||||
use rand::Rng;
|
||||
|
||||
use crate::field::crandall_field::CrandallField;
|
||||
@ -381,7 +381,7 @@ mod tests {
|
||||
let output_high = output >> 32;
|
||||
|
||||
let mut output_limbs = Vec::with_capacity(num_limbs);
|
||||
for i in 0..num_limbs {
|
||||
for _i in 0..num_limbs {
|
||||
output_limbs.push(output % limb_base);
|
||||
output /= limb_base;
|
||||
}
|
||||
|
||||
@ -127,7 +127,7 @@ mod tests {
|
||||
use log::info;
|
||||
|
||||
use super::*;
|
||||
use crate::field::crandall_field::CrandallField;
|
||||
|
||||
use crate::field::goldilocks_field::GoldilocksField;
|
||||
use crate::fri::proof::{
|
||||
FriInitialTreeProofTarget, FriProofTarget, FriQueryRoundTarget, FriQueryStepTarget,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user