Flocc
    Preparing search index...

    Interface RunResult

    Result from a single run.

    interface RunResult {
        agentData?: any[];
        metrics: Record<string, any>;
        parameters: Record<string, any>;
        runIndex: number;
        seed: number;
        stoppedEarly: boolean;
        ticks: number;
    }
    Index

    Properties

    agentData?: any[]

    Agent data if agent metrics were configured

    metrics: Record<string, any>

    Recorded metrics (if interval was 'end', single values; otherwise time series)

    parameters: Record<string, any>

    Parameter values used for this run

    runIndex: number

    Index of this run (0-based)

    seed: number

    Random seed used for this run

    stoppedEarly: boolean

    Whether the run ended due to stopCondition (vs maxTicks)

    ticks: number

    Number of ticks the run executed