All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
searchTable.h
Go to the documentation of this file.
1 /* searchTable.h
2  */
3 #ifndef SEARCH_SEARCHTABLE_H
4 #define SEARCH_SEARCHTABLE_H
5 
6 namespace osl
7 {
8  namespace search
9  {
10  struct SearchTable
11  {
13  static const int CheckmateSpecialDepth = 10000;
15  static const int HistorySpecialDepth = 9998;
16  };
17 
18  } // namespace search
19 } // namespace osl
20 
21 #endif /* SEARCH_SEARCHTABLE_H */
22 // ;;; Local Variables:
23 // ;;; mode:c++
24 // ;;; c-basic-offset:2
25 // ;;; End: