aboutsummaryrefslogtreecommitdiffstats
path: root/python/alphaBeta.py
diff options
context:
space:
mode:
authorJack Vehmeier <vehme003@umn.edu>2021-04-27 23:08:41 -0500
committerJack Vehmeier <vehme003@umn.edu>2021-04-27 23:08:41 -0500
commit16497d70e2d4f9e7568d56e5bc791fcd0a625a4f (patch)
treeea4336d2a3baad9cc1bc2a6a7d7254eea81baf41 /python/alphaBeta.py
parentChange some stuff (diff)
downloadcsci4511w-16497d70e2d4f9e7568d56e5bc791fcd0a625a4f.tar
csci4511w-16497d70e2d4f9e7568d56e5bc791fcd0a625a4f.tar.gz
csci4511w-16497d70e2d4f9e7568d56e5bc791fcd0a625a4f.tar.bz2
csci4511w-16497d70e2d4f9e7568d56e5bc791fcd0a625a4f.tar.lz
csci4511w-16497d70e2d4f9e7568d56e5bc791fcd0a625a4f.tar.xz
csci4511w-16497d70e2d4f9e7568d56e5bc791fcd0a625a4f.tar.zst
csci4511w-16497d70e2d4f9e7568d56e5bc791fcd0a625a4f.zip
alphabeta is closer
Diffstat (limited to 'python/alphaBeta.py')
-rw-r--r--python/alphaBeta.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/alphaBeta.py b/python/alphaBeta.py
index fb89ab0..5d7b932 100644
--- a/python/alphaBeta.py
+++ b/python/alphaBeta.py
@@ -26,7 +26,7 @@ class ABNode(object): # A class for Node related operations
self.CurrentScore = self.Current.score[2]-self.Current.score[1]
def Make(self, r,c,o): # Function for generating a child node
- self.children[(r,c,o)] = ABNode(self.Current)
+ self.children[(r,c,o)] = ABNode(self.Current.get_cur)
move=(r,c,o)
self.children[(r,c,o)].Current.play_move(move)
self.children[(r,c,o)].update_score()