Home | History | Annotate | Download | only in core

Lines Matching defs:Score

212     struct Score {
213 int score;
215 Score& operator +=(int rhs) { this->score += rhs; return *this; }
216 Score& operator <<=(int rhs) { this->score <<= rhs; return *this; }
217 bool operator <(const Score& that) { return this->score < that.score; }
220 Score maxScore = { 0, 0 };
224 Score currentScore = { 0, i };
251 static const int score[3][3] = {
258 currentScore += score[pattern.slant()][current.slant()];
264 // The 'closer' to the target weight, the higher the score.