mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-10 01:33:07 +00:00
cleanup
This commit is contained in:
parent
1d7c28ee1d
commit
2aff3e10da
@ -234,13 +234,7 @@ fn test_mul_bignum() -> Result<()> {
|
||||
|
||||
// Prepare stack.
|
||||
let retdest = 0xDEADBEEFu32.into();
|
||||
let mut initial_stack: Vec<U256> = vec![
|
||||
length,
|
||||
a_start_loc,
|
||||
b_start_loc,
|
||||
output_loc,
|
||||
retdest,
|
||||
];
|
||||
let mut initial_stack: Vec<U256> = vec![length, a_start_loc, b_start_loc, output_loc, retdest];
|
||||
initial_stack.reverse();
|
||||
|
||||
// Prepare interpreter.
|
||||
@ -251,8 +245,6 @@ fn test_mul_bignum() -> Result<()> {
|
||||
// Run mul function.
|
||||
interpreter.run()?;
|
||||
|
||||
dbg!(interpreter.stack());
|
||||
|
||||
// Determine actual product.
|
||||
let new_memory = interpreter.get_kernel_general_memory();
|
||||
let output_location: usize = output_loc.try_into().unwrap();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user