Lines Matching refs:Score
63 Grade::GradeEnum Grade::judge(double Score) { in judge() argument
64 if (Score >= 6. / 7) in judge()
66 if (Score >= 5. / 7) in judge()
68 if (Score >= 4. / 7) in judge()
70 if (Score >= 3. / 7) in judge()
72 if (Score >= 2. / 7) in judge()
74 if (Score >= 1. / 7) in judge()
166 Function.PerDistributionData[Distribution].Score = in fillScores()
177 const double Score = Pair.getValue().Score; in castVotes() local
178 Function.ScoresGeoMean *= Score; in castVotes()
179 const auto G = Grade::judge(Score); in castVotes()