summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..0a9c2d2
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,26 @@
+#define USE_PN_SEARCH
+
+#include <array>
+#include <memory>
+#include <cstdio>
+#include <cstdlib>
+#include "board.h"
+
+#ifdef USE_PN_SEARCH
+#include "pnsearch.h"
+#else
+#include "minimax.h"
+#endif
+
+using namespace std;
+
+
+int main(void) {
+ Board B = Board::empty();
+
+#ifdef USE_PN_SEARCH
+ printf("%d\n", pnsearch(B));
+#else
+ printf("%d\n", minimax<0>(B, -MINIMAX_LARGE, MINIMAX_LARGE, 64));
+#endif
+}