mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-03-02 10:43:09 +00:00
fix
This commit is contained in:
parent
3a019f99af
commit
bac38f8276
@ -129,12 +129,12 @@ fn test_iszero_bignum<F>(prepare_bignum_fn: &F) -> Result<()>
|
||||
where
|
||||
F: Fn(usize) -> (BigUint, U256, Vec<U256>),
|
||||
{
|
||||
let (a, length, memory) = {
|
||||
let (a, length, memory) = prepare_bignum_fn(1000);
|
||||
let (length, memory) = {
|
||||
let (mut a, mut length, mut memory) = prepare_bignum_fn(1000);
|
||||
while a == BigUint::zero() {
|
||||
(a, length, memory) = prepare_bignum_fn(1000);
|
||||
}
|
||||
(a, length, memory)
|
||||
(length, memory)
|
||||
};
|
||||
|
||||
let retdest = 0xDEADBEEFu32.into();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user