Skip to content

Jeansix/Gomoku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 

Repository files navigation

Gomoku

  • Implement Minimax with Alpha-Beta Pruning in your agent.

    code
    └─ MCTS
           ├─ AI-Template.py
           ├─ mcts.py
           ├─ pisqpipe.py
           └─ utils.py
    └─ pbrain-abpruning
           ├─ AI-template.py
           ├─ board.py
           ├─ abpruning.py
           ├─ pisqpipe.py
           └─ utils.py
    • Command to compile the code to an executable file after unzip:
    cd pbrain-abpruning
    pyinstaller utils.py abpruning.py AI-template.py pisqpipe.py --name pbrain-abpruning.exe --onefile
    cd MCTS
    pyinstaller utils.py abpruning.py AI-Template.py pisqpipe.py --name pbrain-mcts.exe 
    --onefile
  • Implement MCTS and improve your agents.

About

In progress...

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages