Evaluation: depth 25 oder 15s Timeout (movetime 15000)

This commit is contained in:
2026-05-25 21:08:36 +02:00
parent fbb15ed61a
commit 79ab97da6e

View File

@@ -26,7 +26,7 @@ if not STOCKFISH_PATH:
else:
STOCKFISH_PATH = "stockfish"
STOCKFISH_DEPTH = int(os.environ.get("STOCKFISH_DEPTH", 15))
STOCKFISH_DEPTH = int(os.environ.get("STOCKFISH_DEPTH", 25))
_stockfish_lock = threading.Lock()
@@ -127,7 +127,7 @@ class StockfishEngine:
self._drain_queue()
self._send(f"position fen {fen}")
self._send(f"go depth {STOCKFISH_DEPTH}")
self._send(f"go depth {STOCKFISH_DEPTH} movetime 15000")
self._searching = True
score_cp = None