-
I wrote the real alpha-beta pruning algorithm, that is the "neogen" one (you'll find a couple in the WoWBrain.cpp file).
I made a version that is not the top for memory and time consumption (it copie…
-
1. Provide list of possible moves:
neatly beside the board
or even better as astrixes on the board
2. Offer a hint: this can be the min value on the path chosen by the minimax/ alpha-beta prunin…
-
Just reminding myself, to fix bugs in 7b0c3559ff1fb62475714cbc8bfa085b0ad3121d
Wikipedia [Negamax](https://en.wikipedia.org/wiki/Negamax)
Basically uses `max(a, b) = -min(-a, -b)`
```
function nega…