Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 507 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 507 Bytes

ConnectFour

Connect Four AI. Currently uses the Minmax algorithm.

###Installation On Ubuntu or debian type linux

sudo apt-get install g++

###Running AI Go to project root and tpye

g++ ConnectFour.cpp -o ConnectFour

Use ./NAME on linux. Use NAME.exe on windows.

###AI Improvements The AI uses the minmax algorithm, however, many improvements can be made. Implement Alpha-beta pruning. Somehow fix algorithm to further differentiate bad and good moves.