Exemple #1
0
 public int CompareTo(Trial other ,SystemMode mode )
 {
     double myScore = GetScoreForMode(mode);
     double othersScore = other.GetScoreForMode(mode);
     if (myScore < othersScore)
         return -1;
     if (myScore > othersScore)
         return 1;
     return 0;
 }