All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
midgame.h
Go to the documentation of this file.
1 /* midgame.h
2  */
3 #ifndef OSL_MIDGAME_H
4 #define OSL_MIDGAME_H
7 
8 #define EVAL_QUAD
9 
10 namespace osl
11 {
12 #ifdef EVAL_QUAD
13  const int NStages = 4;
14  const int EvalStages = 4;
15  typedef QuadInt MultiInt;
16  typedef QuadIntPair MultiIntPair;
17 #else
18 
19  const int NStages = 3;
21  const int EvalStages = 3;
22  typedef TripleInt MultiInt;
23  typedef TripleIntPair MultiIntPair;
24 #endif
25  const int EndgameIndex = EvalStages-1;
26 }
27 
28 #endif /* OSL_MIDGAME_H */
29 // ;;; Local Variables:
30 // ;;; mode:c++
31 // ;;; c-basic-offset:2
32 // ;;; End: