wowlab_common/sim/synthetic.rs
1//! Synthetic identifiers the facade hosts (CLI, WASM) stamp onto sim runs.
2
3/// Rotation id the CLI registers the resolved rotation script under (overlay key).
4pub const CLI_ROTATION_ID: &str = "cli_rotation";
5
6/// Rotation id the WASM rotation-editor preview registers its in-flight script under.
7pub const WASM_PREVIEW_ROTATION_ID: &str = "__wowlab_preview__";
8
9/// Chunk/job label for a standard WASM simulation run.
10pub const WASM_JOB_LABEL: &str = "wasm";
11
12/// Chunk/job label for a WASM rotation-editor preview (single deterministic iteration).
13pub const WASM_PREVIEW_JOB_LABEL: &str = "wasm-preview";