mirror of
https://github.com/logos-blockchain/research.git
synced 2026-08-07 11:43:20 +00:00
15 lines
1.1 KiB
YAML
15 lines
1.1 KiB
YAML
# Tiny end-to-end smoke grid (fast; for dev + CI-style checks).
|
|
# Sweep axes (cartesian product x replicates); every value is a list.
|
|
n_nodes: [1000] # number of nodes / stake holders
|
|
stake_dist: [uniform, pareto] # stake distribution (uniform = equal, pareto = heavy-tailed)
|
|
latency: [0, 4, 8] # L: network latency in slots; block visible to others at t+L
|
|
max_uncles: [0, 1, 4] # U: max uncle references per block (0 = baseline, no uncles)
|
|
uncle_strategy: [oldest] # uncle selection: oldest-first fill
|
|
replicates: 4 # independent RNG replicates per grid cell
|
|
base: # per-run settings shared by every cell (not swept)
|
|
k: 16 # security parameter (scaled; T = 6*floor(16/f) = 2880 slots)
|
|
epochs: 25 # epochs simulated per trajectory
|
|
f: 0.03333333333333333 # slot activation coefficient (default 1/30); configurable
|
|
genesis_d_factor: 0.5 # genesis D_est = factor x true total stake
|
|
pareto_shape: 1.16 # Pareto (Lomax) tail index for the pareto stake distribution
|