mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 17:46:26 +08:00
Implement PEXT based attacks
According to: https://chessprogramming.wikispaces.com/BMI2#PEXTBitboards No functional change.
This commit is contained in:
@@ -79,6 +79,12 @@ const bool HasPopCnt = true;
|
||||
const bool HasPopCnt = false;
|
||||
#endif
|
||||
|
||||
#ifdef USE_PEXT
|
||||
const bool HasPext = true;
|
||||
#else
|
||||
const bool HasPext = false;
|
||||
#endif
|
||||
|
||||
#ifdef IS_64BIT
|
||||
const bool Is64Bit = true;
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user