Update engine/search.py
Browse files- engine/search.py +2 -2
engine/search.py
CHANGED
|
@@ -46,8 +46,8 @@ class NexusNanoEngine:
|
|
| 46 |
def get_best_move(
|
| 47 |
self,
|
| 48 |
fen: str,
|
| 49 |
-
depth: int =
|
| 50 |
-
time_limit: int =
|
| 51 |
) -> Dict:
|
| 52 |
"""
|
| 53 |
Fast move search
|
|
|
|
| 46 |
def get_best_move(
|
| 47 |
self,
|
| 48 |
fen: str,
|
| 49 |
+
depth: int = 3,
|
| 50 |
+
time_limit: int = 2000
|
| 51 |
) -> Dict:
|
| 52 |
"""
|
| 53 |
Fast move search
|