Esempio n. 1
0
 public Block(Block parent)
 {
     K = new K2Reg(this);
     //parent.PreviousBlock = this;
     this.PreviousBlock = parent;
     V = new Var2Reg(parent.V);
     Chunk = parent.Chunk;
 }
Esempio n. 2
0
 public Block(Block parent)
 {
     K = new K2Reg(this);
     //parent.PreviousBlock = this;
     this.PreviousBlock = parent;
     V     = new Var2Reg(parent.V);
     Chunk = parent.Chunk;
 }
Esempio n. 3
0
 public Block()
 {
     Chunk = new Chunk();
     K = new K2Reg(this);
 }
Esempio n. 4
0
 public Block()
 {
     Chunk = new Chunk();
     K     = new K2Reg(this);
 }