This implements SSS* algorithm. The following example shows how to setup the AI and play a Connect Four game: >>> from easyAI import Human_Player, AI_Player, SSS >>> AI = SSS(7) >>> game = ConnectFour([AI_Player(AI),Human_Player()]) >>> game.play()
source not stored for this graph (policy: none)