SetPERM() public method

public SetPERM ( IList perm ) : void
perm IList
return void
Beispiel #1
0
 public void Load(BinaryReader Input)
 {
     this.N = Input.ReadInt32 ();
     int vocsize = Input.ReadInt32 ();
     this.InvIndex = new Bitmap[vocsize];
     for (int i = 0; i < vocsize; i++) {
         this.InvIndex [i] = GenericIO<Bitmap>.Load (Input);
     }
     this.Lens = GenericIO<Bitmap>.Load (Input);
     var p = new ListGen_MRRR ();
     p.Load (Input);
     p.SetPERM (this.GetNotIdxPERM ());
     this.Perm = p;
 }
Beispiel #2
0
 public void Load(BinaryReader Input)
 {
     this.sigma = Input.ReadInt32 ();
     this.xl_bitmap = GenericIO<Bitmap64>.Load (Input);
     var p = new ListGen_MRRR ();
     p.Load (Input);
     p.SetPERM (this.GetNotIdxPERM ());
     this.perm = p;
 }