コード例 #1
0
ファイル: GACodeGenerator.cs プロジェクト: harnold/cobe
        public GACodeGenerator(
            GAInstructionSelectorConfiguration selectorConfiguration,
            GASchedulerConfiguration schedulerConfiguration)
        {
            this.selectorConfiguration = selectorConfiguration;
            this.schedulerConfiguration = schedulerConfiguration;

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