コード例 #1
0
ファイル: GAInstructionSelector.cs プロジェクト: harnold/cobe
 public GAInstructionSelector(GACodeGenerator codeGenerator)
 {
     this.codeGenerator = codeGenerator;
     configuration = codeGenerator.SelectorConfiguration;
     scheduler = new GAScheduler(codeGenerator);
 }
コード例 #2
0
ファイル: GAScheduler.cs プロジェクト: harnold/cobe
 public GAScheduler(GACodeGenerator codeGenerator)
 {
     this.codeGenerator = codeGenerator;
     this.configuration = codeGenerator.SchedulerConfiguration;
 }