Beispiel #1
0
	public AlphaBeta(int _depth){
		treeDepth = _depth;
		tree = new GameStateTree (treeDepth);
	}
Beispiel #2
0
 public AlphaBeta(int _depth)
 {
     treeDepth = _depth;
     tree      = new GameStateTree(treeDepth);
 }