params.sh
1 #!/bin/bash 2 3 MAXDEPTH=32 # maximum depth of the slot tree 4 MAXSLOTS=256 # maximum number of slots 5 CELLSIZE=2048 # cell size in bytes 6 BLOCKSIZE=65536 # block size in bytes 7 NSAMPLES=5 # number of samples to prove 8 9 ENTROPY=1234567 # external randomness 10 SEED=12345 # seed for creating fake data 11 12 NSLOTS=11 # number of slots in the dataset 13 SLOTINDEX=3 # which slot we prove (0..NSLOTS-1) 14 NCELLS=512 # number of cells in this slot 15