Implemented strategy evaluation for moves and improved scoring for BayesMcts
This commit is contained in:
@@ -9,3 +9,7 @@ class IStrategy(ABC):
|
||||
@abstractmethod
|
||||
def pick_next_move(self, board: chess.Board) -> chess.Move:
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def analyze_board(self, board: chess.Board) -> int:
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user