X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftypes.h;h=a0a61600766d4e9873d7a55858d0652c5b787593;hp=c8078546775d20ae49079317cc520b3e9545dc4f;hb=7b8ffe0f5d89784c6b360331a7781604305371d9;hpb=6645115377bd9699ae6785608753d33067b8e036 diff --git a/src/types.h b/src/types.h index c8078546..a0a61600 100644 --- a/src/types.h +++ b/src/types.h @@ -31,9 +31,6 @@ /// -DNO_PREFETCH | Disable use of prefetch asm-instruction. You may need this to /// | run on some very old machines. /// -/// -DNO_SPINLOCK | Use mutex instead of spinlocks. This is much slower, so you -/// | really don't want to do this in general case. -/// /// -DUSE_POPCNT | Add runtime support for use of popcnt asm-instruction. Works /// | only in 64-bit mode and requires hardware with popcnt support. /// @@ -82,14 +79,6 @@ # define pext(b, m) (0) #endif -#ifdef _MSC_VER -# define FORCE_INLINE __forceinline -#elif defined(__GNUC__) -# define FORCE_INLINE inline __attribute__((always_inline)) -#else -# define FORCE_INLINE inline -#endif - #ifdef USE_POPCNT const bool HasPopCnt = true; #else @@ -197,7 +186,7 @@ enum Value : int { PawnValueMg = 198, PawnValueEg = 258, KnightValueMg = 817, KnightValueEg = 846, BishopValueMg = 836, BishopValueEg = 857, - RookValueMg = 1270, RookValueEg = 1278, + RookValueMg = 1270, RookValueEg = 1281, QueenValueMg = 2521, QueenValueEg = 2558, MidgameLimit = 15581, EndgameLimit = 3998