Document where we want a uint16_t instead of a uint64_t
[glaurung_clone.git] / src / misc.h
blob8bf09a86fae8a2d46a8d086f31eb4c6ce30f2308
1 /*
2 Glaurung, a UCI chess playing engine.
3 Copyright (C) 2004-2008 Tord Romstad
5 Glaurung is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 Glaurung is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #if !defined(MISC_H_INCLUDED)
21 #define MISC_H_INCLUDED
24 ////
25 //// Includes
26 ////
28 #include <string>
31 ////
32 //// Constants
33 ////
36 /// Version number. If this is left empty, the current date (in the format
37 /// YYMMDD) is used as a version number.
39 const std::string EngineVersion = "2.1";
42 ////
43 //// Macros
44 ////
46 #define Min(x, y) (((x) < (y))? (x) : (y))
47 #define Max(x, y) (((x) < (y))? (y) : (x))
50 ////
51 //// Prototypes
52 ////
54 extern const std::string engine_name();
55 extern int get_system_time();
56 extern int cpu_count();
57 extern int Bioskey();
59 ////
60 //// Debug
61 ////
62 extern long dbg_cnt0;
63 extern long dbg_cnt1;
64 extern void dbg_print_hit_rate();
66 #define dbg_hit_on(x) { dbg_cnt0++; if (x) dbg_cnt1++; }
68 #endif // !defined(MISC_H_INCLUDED)