Spaces:
Sleeping
Sleeping
Update Gomoku_Bot/eval.py
Browse files- Gomoku_Bot/eval.py +1 -1
Gomoku_Bot/eval.py
CHANGED
|
@@ -541,7 +541,7 @@ class Evaluate:
|
|
| 541 |
twos = points[shapes['TWO']]
|
| 542 |
|
| 543 |
mid = list(block_fours) + list(threes) + list(block_threes) + list(two_twos) + list(twos)
|
| 544 |
-
res = set(mid[:
|
| 545 |
for i in range(len(model_train_matrix)):
|
| 546 |
for j in range(len(model_train_matrix)):
|
| 547 |
if (i * len(model_train_matrix) + j) not in res:
|
|
|
|
| 541 |
twos = points[shapes['TWO']]
|
| 542 |
|
| 543 |
mid = list(block_fours) + list(threes) + list(block_threes) + list(two_twos) + list(twos)
|
| 544 |
+
res = set(mid[:4])
|
| 545 |
for i in range(len(model_train_matrix)):
|
| 546 |
for j in range(len(model_train_matrix)):
|
| 547 |
if (i * len(model_train_matrix) + j) not in res:
|