%% Copyright (c) 2019-2020, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. %% You may obtain a copy of the License at %% %% http://www.apache.org/licenses/LICENSE-2.0 %% %% Unless required by applicable law or agreed to in writing, software %% distributed under the License is distributed on an "AS IS" BASIS, %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %% See the License for the specific language governing permissions and %% limitations under the License. -define(GLOBAL_ATTACKS_WHITE_PAWN_MOD, binbo_global_attacks_wp). -define(GLOBAL_ATTACKS_BLACK_PAWN_MOD, binbo_global_attacks_bp). -define(GLOBAL_ATTACKS_KING_MOD, binbo_global_attacks_king). -define(GLOBAL_ATTACKS_KNIGHT_MOD, binbo_global_attacks_knight). -define(GLOBAL_MAGIC_BISHOP_MASK_MOD, binbo_global_magic_bishop_mask). -define(GLOBAL_MAGIC_BISHOP_ATTACKS_MOD, binbo_global_magic_bishop_attacks). -define(GLOBAL_MAGIC_ROOK_MASK_MOD, binbo_global_magic_rook_mask). -define(GLOBAL_MAGIC_ROOK_ATTACKS_MOD, binbo_global_magic_rook_attacks). -define(GLOBAL_HASH_PIECE_MOD, binbo_global_hash_piece). -define(GLOBAL_HASH_ENPASSANT_MOD, binbo_global_hash_enpa). -define(GLOBAL_HASH_SIDE_MOD, binbo_global_hash_side). -define(GLOBAL_HASH_CASTLING_MOD, binbo_global_hash_castling).