aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Vehmeier <vehme003@umn.edu>2021-04-28 15:51:45 -0500
committerJack Vehmeier <vehme003@umn.edu>2021-04-28 15:51:45 -0500
commit2d78d384e9e0f6c60cf1ba93fb126b401ab75936 (patch)
treec83ed8fb3d655c75e6be92ee0d73ce5ad922e8c6
parentfixed (diff)
parentLower CPU requirements for faster runtimes (diff)
downloadcsci4511w-2d78d384e9e0f6c60cf1ba93fb126b401ab75936.tar
csci4511w-2d78d384e9e0f6c60cf1ba93fb126b401ab75936.tar.gz
csci4511w-2d78d384e9e0f6c60cf1ba93fb126b401ab75936.tar.bz2
csci4511w-2d78d384e9e0f6c60cf1ba93fb126b401ab75936.tar.lz
csci4511w-2d78d384e9e0f6c60cf1ba93fb126b401ab75936.tar.xz
csci4511w-2d78d384e9e0f6c60cf1ba93fb126b401ab75936.tar.zst
csci4511w-2d78d384e9e0f6c60cf1ba93fb126b401ab75936.zip
Merge branch 'master' of https://github.umn.edu/smit9523/CSCI-4511W-Project
-rw-r--r--python/alphaBeta.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/alphaBeta.py b/python/alphaBeta.py
index aab2a2a..f9d735f 100644
--- a/python/alphaBeta.py
+++ b/python/alphaBeta.py
@@ -108,3 +108,8 @@ class AlphaBeta(object):
return Result
return Minimum_Score
+
+ def __repr__(self):
+ s="ABNode"
+ return s
+