public Block(Block parent) { K = new K2Reg(this); //parent.PreviousBlock = this; this.PreviousBlock = parent; V = new Var2Reg(parent.V); Chunk = parent.Chunk; }
public Block() { Chunk = new Chunk(); K = new K2Reg(this); }