Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 755 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 755 Bytes

gomoku_ai

https://qwertyforce.dev/gomoku_ai.pdf [RU]
https://habr.com/ru/post/541564/ [RU]
Experiments with variations of minimax algorithm, MTD(f), MCTS in Gomoku
mtdf(10) - dangerous pruning, can lead to unexpected loss
Main ai agent is in mtdf(10)_worker.js. You can play against ai here https://gomoku.qwertyforce.dev/game_offline

You can see this error while opening html files in Chrome
Alt text
Chrome doesn't let you load web workers from a local file. https://stackoverflow.com/questions/21408510/chrome-cant-load-web-worker https://stackoverflow.com/questions/17679399/does-disable-web-security-work-in-chrome-anymore/36939693
c++ version - https://github.com/qwertyforce/gomoku_ai_c