コード例 #1
0
 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");
 }
コード例 #2
0
 public OptimiserObserver(Simulation mySimulation, string name) : base(mySimulation, name)
 {
     queueLength          = new Variable <int>(this);
     QueueLengthStatistic = new WeightedStatistic("QueueLength");
 }
コード例 #3
0
ファイル: DispatcherObserver.cs プロジェクト: JelleAdan/CSSL
 public DispatcherObserver(Simulation mySimulation) : base(mySimulation)
 {
     queueLength          = new Variable <int>(this);
     queueLengthStatistic = new WeightedStatistic("Dispatcher queue length");
 }
コード例 #4
0
 public TotalQueueObserver(Simulation mySimulation) : base(mySimulation)
 {
     queueLength          = new Variable <int>(this);
     queueLengthStatistic = new WeightedStatistic("QueueLength");
 }
コード例 #5
0
ファイル: ServerPoolObserver.cs プロジェクト: nitman118/CSSL
 public ServerPoolObserver(Simulation sim) : base(sim)
 {
     nrOfJobs          = new Variable <int>(this);
     nrOfJobsStatistic = new WeightedStatistic("Number of jobs per serverpool");
 }