Skip to content

Commit d270aef

Browse files
committed
Update kary merkle benches to 8 depth and 8 arity
1 parent 6340dda commit d270aef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

console/collections/benches/kary_merkle_tree.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ use snarkvm_console_types::Field;
2525

2626
use criterion::Criterion;
2727

28-
const DEPTH: u8 = 10;
29-
const ARITY: u8 = 4;
28+
const DEPTH: u8 = 8;
29+
const ARITY: u8 = 8;
3030

3131
/// Generates the specified number of random Merkle tree leaves.
3232
macro_rules! generate_leaves {

synthesizer/benches/kary_merkle_tree.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ type NativeLeafHasher = Sha3_256;
3737
type CircuitPathHasher = circuit::Sha3_256<AleoV0>;
3838
type CircuitLeafHasher = circuit::Sha3_256<AleoV0>;
3939

40-
const DEPTH: u8 = 10;
41-
const ARITY: u8 = 4;
40+
const DEPTH: u8 = 8;
41+
const ARITY: u8 = 8;
4242

4343
/// Generates the specified number of random Merkle tree leaves.
4444
macro_rules! generate_leaves {

0 commit comments

Comments
 (0)