Connect Four

The classic game connect four can be played on a 7x7 board against a computer-opponent at 3 levels.

You are now following this Submission

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 (2026). Connect Four (https://www.mathworks.com/matlabcentral/fileexchange/33187-connect-four), MATLAB Central File Exchange. Retrieved .

Categories

Find more on Board games in Help Center and MATLAB Answers

General Information

MATLAB Release Compatibility

  • Compatible with any release

Platform Compatibility

  • Windows
  • macOS
  • Linux
Version Published Release Notes Action
1.1.0.0

Program description (help) updated

1.0.0.0