Demo / Gomoku_Bot /config.py
HuskyDoge's picture
added gomokubot
7d23b62
raw
history blame
350 Bytes
config = {
"enableCache": True, # Whether to enable caching
"onlyInLine": False, # Whether to search only on a single line, an optimization option
"inlineCount": 4, # Number of recent points to consider for being on the same line
"inLineDistance": 5 # Maximum distance to determine if a point is on the same line
}