My checkers program


I used the classic minmax alpha-beta pruning algorithm.
The evaluation works as follows:

E(red) = ( red_man_count * 1 ) - ( white_man_count * 1 ) + ( red_king_count * 2 ) - ( white_king_count * 2 )