Tree2
[siwg.git] / espy / src / tree / Search.h
blobcc8db82a2ca801b6326f77939498f61df0dacdad
1 /**
2 * \file
4 * Prototype of search algorithms implementations.
6 */
8 #ifndef __Search__
9 #define __Search__
11 #include "Game.h"
13 template <class G>
14 class Search {
16 public:
17 void position(G &);
19 void search();
20 void search_single_node();
22 int result();
23 int nodes();
24 int depth();
25 int depth(int);
28 #endif /* __Search__ */