Update engine.py
Browse files
engine.py
CHANGED
|
@@ -166,7 +166,7 @@ class SynapseEngine:
|
|
| 166 |
board: chess.Board,
|
| 167 |
alpha: float,
|
| 168 |
beta: float,
|
| 169 |
-
depth: int =
|
| 170 |
) -> float:
|
| 171 |
"""
|
| 172 |
Quiescence search to avoid horizon effect
|
|
@@ -288,7 +288,7 @@ class SynapseEngine:
|
|
| 288 |
def get_best_move(
|
| 289 |
self,
|
| 290 |
fen: str,
|
| 291 |
-
depth: int =
|
| 292 |
time_limit: int = 5000
|
| 293 |
) -> dict:
|
| 294 |
"""
|
|
|
|
| 166 |
board: chess.Board,
|
| 167 |
alpha: float,
|
| 168 |
beta: float,
|
| 169 |
+
depth: int = 6
|
| 170 |
) -> float:
|
| 171 |
"""
|
| 172 |
Quiescence search to avoid horizon effect
|
|
|
|
| 288 |
def get_best_move(
|
| 289 |
self,
|
| 290 |
fen: str,
|
| 291 |
+
depth: int = 6,
|
| 292 |
time_limit: int = 5000
|
| 293 |
) -> dict:
|
| 294 |
"""
|