mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-05 23:33:07 +00:00
Clippy
This commit is contained in:
parent
c4c3533cff
commit
3359ee708c
@ -189,7 +189,7 @@ impl<'a, F: RichField + Extendable<D>, const D: usize>
|
|||||||
local_z: *looking_z,
|
local_z: *looking_z,
|
||||||
next_z: *looking_z_next,
|
next_z: *looking_z_next,
|
||||||
challenges,
|
challenges,
|
||||||
columns: &looking_columns,
|
columns: looking_columns,
|
||||||
});
|
});
|
||||||
|
|
||||||
let (looked_z, looked_z_next) = ctl_zs[*looked_table as usize].next().unwrap();
|
let (looked_z, looked_z_next) = ctl_zs[*looked_table as usize].next().unwrap();
|
||||||
@ -197,7 +197,7 @@ impl<'a, F: RichField + Extendable<D>, const D: usize>
|
|||||||
local_z: *looked_z,
|
local_z: *looked_z,
|
||||||
next_z: *looked_z_next,
|
next_z: *looked_z_next,
|
||||||
challenges,
|
challenges,
|
||||||
columns: &looked_columns,
|
columns: looked_columns,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
acc
|
acc
|
||||||
|
|||||||
@ -388,7 +388,7 @@ where
|
|||||||
.0
|
.0
|
||||||
.get_lde_values_packed(i_next_start, step)[num_permutation_zs + i],
|
.get_lde_values_packed(i_next_start, step)[num_permutation_zs + i],
|
||||||
challenges: lookup_data.challenges.challenges[i % config.num_challenges],
|
challenges: lookup_data.challenges.challenges[i % config.num_challenges],
|
||||||
columns: &columns,
|
columns,
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
eval_vanishing_poly::<F, F, P, C, S, D, 1>(
|
eval_vanishing_poly::<F, F, P, C, S, D, 1>(
|
||||||
|
|||||||
@ -106,7 +106,7 @@ where
|
|||||||
[(); S::PUBLIC_INPUTS]:,
|
[(); S::PUBLIC_INPUTS]:,
|
||||||
[(); C::Hasher::HASH_SIZE]:,
|
[(); C::Hasher::HASH_SIZE]:,
|
||||||
{
|
{
|
||||||
check_permutation_options(&stark, &proof_with_pis, &challenges)?;
|
check_permutation_options(&stark, proof_with_pis, &challenges)?;
|
||||||
let StarkProofWithPublicInputs {
|
let StarkProofWithPublicInputs {
|
||||||
proof,
|
proof,
|
||||||
public_inputs,
|
public_inputs,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user