merged with changes to minimax AI

master
beholder 2011-10-02 09:10:01 +02:00
commit c3a13c1ac5
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public class ArtificialScore {
} else if (this==INVALID_SCORE) {
return true;
} else if (score==other.score) {
return depth>other.depth;
return depth<other.depth;
} else if (best) {
return score<other.score;
} else {