Added basic bayes-mcts using beta distribution

This commit is contained in:
Theo Haslinger
2024-01-28 15:18:13 +01:00
parent c667a263a7
commit 2662dbf53a
10 changed files with 428 additions and 119 deletions

View File

@@ -3,7 +3,7 @@ import chess
import chess.engine
import random
import time
from chesspp.classic_mcts import ClassicMcts
from src.chesspp.classic_mcts import ClassicMcts
class Limit:
""" Class to determine when to stop searching for moves """