Пример #1
0
 // Initialize BlastQueue to empty jobs
 /// <summary>
 /// Instatiates a BlastJob for each position in the BlastQueue
 /// </summary>
 public BlastQueue()
 {
     blastQueue = new BlastJob[Length];
     for (int i = 0; i < Length; i++)
     {
         blastQueue[i] = new BlastJob();
     }
 }
Пример #2
0
 // Initialize BlastQueue to empty jobs
 /// <summary>
 /// Instatiates a BlastJob for each position in the BlastQueue
 /// </summary>
 public BlastQueue()
 {
     blastQueue = new BlastJob[Length];
     for (int i = 0; i < Length; i++)
     {
         blastQueue[i] = new BlastJob();
     }
 }