megalodon-chess / megalodon

Chess engine with the UCI protocol
https://megalodon-chess.github.io/megalodon/
GNU General Public License v3.0
14 stars 0 forks source link

Array Move Generation #28

Closed phuang1024 closed 3 years ago

phuang1024 commented 3 years ago

Describe changes

Changed vectors to arrays:

// old
const vector<vector<char>> DIR_R = ...;

// new
const char DIR_R[4][2] = ...;

Additional info

NPS increased from 1130k to 1140k.