internal static SchedulingBlock CreateBlock(int index, LinkedList <SchedulingBlock> blocks) { var block = new SchedulingBlock(index); block.node = blocks.AddLast(block); return(block); }
private SchedulingPass(int index) { this.Index = index; this.Blocks = new LinkedList <SchedulingBlock>(); SchedulingBlock.CreateBlock(0, this.Blocks); }