消掉部分多余空格

This commit is contained in:
Calcitem 2020-02-26 00:29:24 +08:00
parent e39cd7eb5a
commit 4aefae4926
1 changed files with 2 additions and 2 deletions

View File

@ -385,10 +385,10 @@ int AIAlgorithm::nodeCompare(const Node *first, const Node *second)
int ret = (gSideToMove == PLAYER_BLACK ? 1 : -1);
return (first->value < second->value ? ret : -ret);
return (first->value < second->value ? ret : -ret);
}
return (first->rating < second->rating ? 1 : -1);
return (first->rating < second->rating ? 1 : -1);
}
void AIAlgorithm::sortMoves(Node *node)