mirror of
https://github.com/codex-storage/proof-aggregation.git
synced 2025-02-10 21:56:24 +00:00
7 lines
377 B
Bash
Executable File
7 lines
377 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export MAX_DEPTH=32 # maximum depth of the slot tree
|
|
export MAX_LOG2_N_SLOTS=8 # Depth of the dataset tree = ceiling_log2(max_slots)
|
|
export BLOCK_TREE_DEPTH=5 # depth of the mini tree (block tree)
|
|
export N_FIELD_ELEMS_PER_CELL=272 # number of field elements per cell
|
|
export N_SAMPLES=5 # number of samples to prove |