summaryrefslogtreecommitdiff
path: root/c++/core/mcts.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++/core/mcts.h')
-rw-r--r--c++/core/mcts.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/c++/core/mcts.h b/c++/core/mcts.h
index 30eed2f..f0f3ba5 100644
--- a/c++/core/mcts.h
+++ b/c++/core/mcts.h
@@ -1,5 +1,20 @@
#pragma once
+#include "tree.h"
+
namespace saw {
+template<typename State>
+struct mcts_value {
+ State state;
+};
+template<typename State>
+class mcts_tree {
+private:
+ /**
+ * @todo
+ * Basically I need to a tree with tree<mcts_value<State>>
+ */
+public:
+};
}