Skip to content

Commit

Permalink
Fix bug in EdaxLine.str
Browse files Browse the repository at this point in the history
  • Loading branch information
dominichofer committed Mar 27, 2024
1 parent 4a14605 commit 3640273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reversi/engine/edax.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __str__(self) -> str:
f"score: {self.score:+03}",
f"time: {self.time}",
f"nodes: {self.nodes:n}",
f"nodes_per_second: {nodes_per_second:n}",
f"nodes_per_second: {nodes_per_second}",
f"pv: {pv}",
f"best_move: {self.best_move.name}",
f"result: {self.result}",
Expand Down

0 comments on commit 3640273

Please sign in to comment.