Rafs-an09002 commited on
Commit
cd67e18
·
verified ·
1 Parent(s): 6c2d455

Update engine.py

Browse files
Files changed (1) hide show
  1. engine.py +2 -2
engine.py CHANGED
@@ -166,7 +166,7 @@ class SynapseEngine:
166
  board: chess.Board,
167
  alpha: float,
168
  beta: float,
169
- depth: int = 4
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 = 3,
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
  """