Class SSAResult

  • All Implemented Interfaces:

    
    public class SSAResult
    extends SolverResult
                        

    Result container for Stochastic State-space Analysis (SSA) solver computations.

    SSAResult extends the base SolverResult to include SSA-specific simulation results and state-space information. SSA uses stochastic simulation to generate sample paths and estimate performance metrics with statistical confidence intervals.

    SSA analysis results include:

    • Transient system state evolution over time
    • State space representations for each station
    • Synchronization matrices for multi-class systems
    • Statistical estimates from simulation runs
    Since:

    1.0

    • Constructor Detail

      • SSAResult

        SSAResult()
        Constructs an empty SSAResult to allow field population from different sources.
      • SSAResult

        SSAResult(Matrix QN, Matrix UN, Matrix RN, Matrix TN, Matrix CN, Matrix XN, Map<Integer, Matrix> tranSysState, Matrix tranSync, NetworkStruct sn)
        Constructs an SSAResult with the specified performance metrics and state information.
        Parameters:
        QN - queue lengths [stations x classes]
        UN - utilizations [stations x classes]
        RN - response times [stations x classes]
        TN - throughputs [stations x classes]
        CN - visit counts [stations x classes]
        XN - arrival rates [stations x classes]
        tranSysState - transient system states indexed by time
        tranSync - transient synchronization matrix
        sn - network structure information
    • Method Detail