Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 622 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 622 Bytes

Othello AI Implementation

Introduction

This project involves implementing an artificial intelligence (AI) capable of playing the board game Othello. The AI is optimized using a tree search algorithm and alpha-beta pruning.

Compilation

To compile the project, use the provided Makefile and type the following command:

make

Execution

After compiling, you can run the program using the following command format:

./main ./<AI1> ./<AI2>

Note: <AI1> is the path to your AI executable, and <AI2> is the path to the opponent's executable.

To clean the executables, type:

make clean