예제 #1
0
파일: LU.cs 프로젝트: edekk/rawr-2.3.23
 // data will be modified, if you need to retain it clean pass a clone
 public LU(int size, ArraySet arraySet)
 {
     this.size     = size;
     this.arraySet = arraySet;
     etaSize       = 0;
     if (size > arraySet.LUsizeMax)
     {
         arraySet.LUsizeMax = size;
         arraySet.RecreateArrays();
     }
 }