Invalid Corner Case
Closed this issue · 1 comments
RyanStonebraker commented
Grubbly commented
There was a precedence issue in moveGenerator.cpp -> checkKill -> bool rightKillCondition & bool backRightKillCondition:
Originally I had:
position + 1 % 8 != 0
which evaluates the (1%8) before doing (position+1)
It has now been changed to
(position + 1) % 8 != 0
which resolves the error.