ankitrai96 / tic-tac-toe

a manifestation of Minimax algorithm over a classic tic-tac-toe game
https://youtu.be/NqgawMPhoz0
MIT License
0 stars 0 forks source link

Board reset time #1

Open ankitrai96 opened 6 years ago

ankitrai96 commented 6 years ago

The time taken to reset gameboard after draw between user and Ghost AI (in pro mode) exceeds the intended time of 1750 milliseconds.

ankitrai96 commented 6 years ago

Please note that despite this bug, the release remains functional.

The issue seems to be related to the minimax algorithm itself. Particularly, the absence of alpha beta pruning in it.