Beispiel #1
0
 internal TrackerInitializer(ParallelSort outerInstance, int threadIndex, long[] rangeParams, int lowRadixRange, int highRadixRange, long[] result)
 {
     this._outerInstance = outerInstance;
     this.ThreadIndex    = threadIndex;
     this.RangeParams    = rangeParams;
     this.LowRadixRange  = lowRadixRange;
     this.HighRadixRange = highRadixRange;
     this.Result         = result;
 }
Beispiel #2
0
 internal SortWorker(ParallelSort outerInstance, long startRange, long size)
 {
     this._outerInstance = outerInstance;
     this.Start          = startRange;
     this.Size           = size;
 }