Better display at the end of game

This commit is contained in:
Yorick Barbanneau 2023-12-21 17:27:44 +01:00
parent 8c825506f5
commit d480887a1d

View file

@ -188,5 +188,5 @@ if __name__ == '__main__':
move[2] move[2]
)) ))
game.push(move) game.push(move)
print("Game end - score black:{}, white:{}".format(game.heuristique(1), game.heuristique(2))) print("Game end - score black:{}, white:{}\n".format(game._nbBLACK, game._nbWHITE))
print(game.__str__) print(game.show_board())