Connect Four

The classic game connect four can be played on a 7x7 board against a computer-opponent at 3 levels.
1.3K Downloads
Updated 21 Oct 2011

View License

Start game by entering: connect4_start

The game is played by two players each of which can be human or computer. You can choose between 3 levels corresponding to the depth of evaluation by the program. The program plays far from optimal but it may still be challenging to some casual players.

The program uses a minimax algorithm and employs a brute-force search of the search tree. Evaluation of positions follows the simple tactic of maximizing the weighted amount of same-color pieces in empty arrays of 4.
The actual depth of search (usually 2-3) corresponds to the depth reached after computing a predefined minimum number of available moves. Despite the usage of only one simple tactic the program appears to show some reasonable or even intelligent behavior.

At each move, the figure title gives information on the round-nr, computed depth, nr of computed moves, assessment of current position, and
evaluation of the best-possible position at computed depth. Positive/negative values indicate an assumed advantage for player 1/2.

Cite As

Mathias Benedek (2024). Connect Four (https://www.mathworks.com/matlabcentral/fileexchange/33187-connect-four), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2008a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Board games in Help Center and MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.1.0.0

Program description (help) updated

1.0.0.0