Ejemplo n.º 1
0
 public IList<int> BuildListRL(IList<int> list, int maxvalue)
 {
     var L = new ListRL ();
     L.Build (list, maxvalue);
     return L;
 }
Ejemplo n.º 2
0
 protected override void FinishBuild(object arg)
 {
     var L = new ListRL ();
     L.Build (this.PERM, this.PERM.Count - 1);
     this.PERM = L;
 }