/2048

Some AI that that play 2048!

Primary LanguageVMIT LicenseMIT

2048

Install V and just, then use just -l to list available recipes.

Add -h to those recipes that have optional flags to see full options of the game.

just run -h

You can create production build to gain the performance optimized executable.

just build

Use -A to select the AI algorithm:

just run -A dfs

There are various kinds of AI you can choose:

  • dfs
  • heuristic
  • minmax
  • expectimax
  • monte
  • reinforcement

The default algorithm is dfs.