Each results module consists of 8 "sections", 4 for teams and 4 for individuals. Of the 4 there is one for results ranking [called score] (who's 1st, who is 2nd and so on) and one for number of points.
As hinted on in issue #114, we use a custom results module for a score O. We calculate the points and then base our ranking purely on the points. The rankings or score is a negative number, the one with the most negative number will be in first place. Since our ranking depends on the points it would be nice if the score calculation could call the points calculation, then multiply that number by -1 and return that, instead of duplicating all the code we need to calculate the points.
Each results module consists of 8 "sections", 4 for teams and 4 for individuals. Of the 4 there is one for results ranking [called score] (who's 1st, who is 2nd and so on) and one for number of points.
As hinted on in issue #114, we use a custom results module for a score O. We calculate the points and then base our ranking purely on the points. The rankings or score is a negative number, the one with the most negative number will be in first place. Since our ranking depends on the points it would be nice if the score calculation could call the points calculation, then multiply that number by -1 and return that, instead of duplicating all the code we need to calculate the points.