Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 591 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 591 Bytes

Connect4 Monte-Carlo Tree Search

Play against an MCTS connect4 agent in your terminal.

CleanShot 2023-07-18 at 19 45 18@2x

Includes two agents that play connect4.

  • Random agent that makes random moves.
  • MCTS agent that simulates thousands of games to pick the best move.

Dependencies

  • Rust (see rustup for installation)

Usage

cargo run --release

Run it in release mode. More games are simulated so the agent is smarter.