MiniMax with Alpha Beta Pruning for Othello not working
问题 I have the following implementation of a alpha beta minimax for an othello (reversi) game. Somehow, this never really returns the proper action to take. It seems to return the default action I put in the function (0, 0) and the secondary value of -32768, which means it got pruned at the MAX subroutine. Any tips on what I can improve with this and how I can fix this problem? Note: I've identified the successors being returned properly for the most part. The max depth for now is 8. Computer