summaryrefslogtreecommitdiff
path: root/c++/core/mcts.h
blob: f0f3ba543ed8d1e45421696a01b318ff8b5bf386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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:
};
}