public QueueObserver(Simulation mySimulation, string name) : base(mySimulation, name) { queueLength = new Variable <int>(this); queueLengthStatistic = new WeightedStatistic("QueueLength"); meanQueueLength = new Statistic("meanQueueLength"); stdQueueLength = new Statistic("stdQueueLength"); }
public OptimiserObserver(Simulation mySimulation, string name) : base(mySimulation, name) { queueLength = new Variable <int>(this); QueueLengthStatistic = new WeightedStatistic("QueueLength"); }
public DispatcherObserver(Simulation mySimulation) : base(mySimulation) { queueLength = new Variable <int>(this); queueLengthStatistic = new WeightedStatistic("Dispatcher queue length"); }
public TotalQueueObserver(Simulation mySimulation) : base(mySimulation) { queueLength = new Variable <int>(this); queueLengthStatistic = new WeightedStatistic("QueueLength"); }
public ServerPoolObserver(Simulation sim) : base(sim) { nrOfJobs = new Variable <int>(this); nrOfJobsStatistic = new WeightedStatistic("Number of jobs per serverpool"); }