forked from ali-2004-byte/resq-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheadless_baseline.yaml
More file actions
32 lines (28 loc) · 1.43 KB
/
Copy pathheadless_baseline.yaml
File metadata and controls
32 lines (28 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
config_version: "1.0.0"
# ---------------------------------------------------------------------------
# Reproducibility seeds (Sprint 8 – US-032)
# ---------------------------------------------------------------------------
# random_seed → controls random station placement (random_fleet.py)
# event_seed → controls Poisson event spawning (event_spawner.py)
# ambulance_seed → reserved for future randomized ambulance init
# ---------------------------------------------------------------------------
random_seed: 42
event_seed: 100
ambulance_seed: 200
# ---------------------------------------------------------------------------
# Baseline experiment parameters
# ---------------------------------------------------------------------------
n_stations: 5 # ambulance stations per random fleet placement
n_repeats: 10 # number of random placements to average over
ticks_per_run: 1000 # simulation ticks per baseline run
headless: true
# ---------------------------------------------------------------------------
# Simulation parameters (inherits sim_config.yaml defaults where not overridden)
# ---------------------------------------------------------------------------
NUM_AMBULANCES: 5
SIMULATION_TICKS: 1000
TARGET_FPS: 0 # 0 = headless (no display, no frame-rate cap)
POISSON_LAMBDA: 0.05
TRAFFIC_ENABLED: true
LOG_LEVEL: "WARNING" # suppress verbose INFO logs during batch runs
LOG_FILE: "outputs/baseline_sim.log"