aboutsummaryrefslogtreecommitdiffstats
path: root/python/alphaBeta.py
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-04-27 20:52:51 -0500
committerMatt Strapp <strap012@umn.edu>2021-04-27 20:52:51 -0500
commit85d2dc7018bd8373dfee3ce885eebe148c361edf (patch)
treed64d0b4c995aee33035c11bf94cd6502880b8891 /python/alphaBeta.py
parentGet rid of super slow deepcopy (diff)
downloadcsci4511w-85d2dc7018bd8373dfee3ce885eebe148c361edf.tar
csci4511w-85d2dc7018bd8373dfee3ce885eebe148c361edf.tar.gz
csci4511w-85d2dc7018bd8373dfee3ce885eebe148c361edf.tar.bz2
csci4511w-85d2dc7018bd8373dfee3ce885eebe148c361edf.tar.lz
csci4511w-85d2dc7018bd8373dfee3ce885eebe148c361edf.tar.xz
csci4511w-85d2dc7018bd8373dfee3ce885eebe148c361edf.tar.zst
csci4511w-85d2dc7018bd8373dfee3ce885eebe148c361edf.zip
Change some stuff
Diffstat (limited to 'python/alphaBeta.py')
-rw-r--r--python/alphaBeta.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/alphaBeta.py b/python/alphaBeta.py
index 93c8b0b..fb89ab0 100644
--- a/python/alphaBeta.py
+++ b/python/alphaBeta.py
@@ -47,8 +47,8 @@ class AlphaBeta(object):
for x in possiblemoves:
if (x[0],x[1],x[2]) not in start.children:
start.Make(x[0],x[1],x[2])
- if Ply_num < 2:
- return (i, j)
+ # if Ply_num < 2:
+ # return (i, j)
Minimum_Score = 1000
r = 0