Esempio n. 1
0
	public AlphaBeta(int _depth){
		treeDepth = _depth;
		tree = new GameStateTree (treeDepth);
	}
Esempio n. 2
0
 public AlphaBeta(int _depth)
 {
     treeDepth = _depth;
     tree      = new GameStateTree(treeDepth);
 }