Example #1
0
 public JobType()
 {
     this.alternates = new JobRouteList();
     this.jobs       = new JobList();
     this.CreateStatistics();
     this.weightParameter = 1;
 }
Example #2
0
 public JobType(string nameIn, FLOWObject parentIn, RVGenerator arrivalIn, RVGenerator batchIn, RVGenerator dueDateTightnessIn, Station inputStationIn, Station outputStationIn)
     : base(nameIn, parentIn)
 {
     this.arrival          = arrivalIn;
     this.batch            = batchIn;
     this.dueDateTightness = dueDateTightnessIn;
     this.inputStation     = inputStationIn;
     this.outputStation    = outputStationIn;
     this.alternates       = new JobRouteList();
     this.jobs             = new JobList();
     this.weightParameter  = 1;
 }
Example #3
0
 public Unitload(string nameIn, FLOWObject parentIn)
     : base(nameIn, parentIn)
 {
     this.alternates = new JobRouteList();
     this.completed  = new OperationList();
 }
Example #4
0
 public UnitloadState()
 {
     this.alternates = new JobRouteList();
     this.completed  = new StringList();
 }
Example #5
0
 public Unitload()
 {
     this.alternates = new JobRouteList();
     this.completed  = new OperationList();
 }