summaryrefslogtreecommitdiff
path: root/ai_mc.h
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-07-02 00:07:13 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-07-02 00:07:13 +0200
commit4a2389a8a97874393d48237ac638bdb51ebbe768 (patch)
tree03ddb8a3c3b15eb176b4ab1717c53fabfa7e00a7 /ai_mc.h
parente45da4cdddcaa6465243f4f2c77f4b1e3bcfb306 (diff)
Add monte carlo player
Diffstat (limited to 'ai_mc.h')
-rw-r--r--ai_mc.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ai_mc.h b/ai_mc.h
new file mode 100644
index 0000000..c2e1bbb
--- /dev/null
+++ b/ai_mc.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include "board.h"
+
+
+namespace AI::MC {
+ Move findMove(const Board &bd, int player);
+}