From f4b1eb0b790bfaeb4976409afea2e5cb44ac0e71 Mon Sep 17 00:00:00 2001 From: Nicholas Zuber Date: Mon, 1 Jul 2019 18:20:56 -0400 Subject: [PATCH] Improve hint engine --- chs/VERSION | 2 +- chs/client/runner.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chs/VERSION b/chs/VERSION index 10bf840..6acdb44 100644 --- a/chs/VERSION +++ b/chs/VERSION @@ -1 +1 @@ -2.0.1 \ No newline at end of file +2.0.3 \ No newline at end of file diff --git a/chs/client/runner.py b/chs/client/runner.py index aa92822..4b8f749 100644 --- a/chs/client/runner.py +++ b/chs/client/runner.py @@ -108,7 +108,7 @@ def make_turn(self, meta=(False, None)): self.board.pop() self.board.pop() elif move == self.HINT: - hint = self.hint_engine.play(self.board, 0.500) + hint = self.hint_engine.play(self.board, 1.000) self.board.help_engine_hint = self.board.uci(hint.move) else: s = self.board.parse_san(move)