HuskyDoge commited on
Commit
2baaf51
·
1 Parent(s): 1cc58e9

Update Gomoku_Bot/eval.py

Browse files
Files changed (1) hide show
  1. 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[:5])
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: