示例#1
0
 public static void Main(string[] args) {
   FactoryScheduling scheduling =
       new FactoryScheduling(new SmallSyntheticData().FetchData());
   scheduling.Solve();
 }
示例#2
0
 public RandomSelectToolHeuristic(FactoryScheduling factoryScheduling,
                                  int seed) {
   this.factoryScheduling = factoryScheduling;
   // deterministic seed for result reproducibility
   this.rnd = new Random(seed);
 }