From Wikipedia:
Connect Four has since been solved with brute force methods beginning with John Tromp's work in compiling an 8-ply database[4][8] (Feb 4, 1995). The artificial intelligence algorithms able to strongly solve Connect Four are minimax or negamax, with optimizations that include alpha-beta pruning, dynamic history ordering of game player moves, and transposition tables. The code for solving Connect Four with these methods is also the basis for the Fhourstones integer performance benchmark.
I've been trying to speed up my Connect 4 algorithm, which currently uses Minimax along with Alpha-Beta pruning and a transposition table. I want to make it faster so decided to add in "dynamic history ordering of game player moves".
What exactly is "dynamic history ordering of game player moves"? I googled it but didn't find any resources that explained it. Could someone explain the concept, and if possible, tell mehow much of a speed boost I should expect?