ysnrkdm / FlatReversi

Reversi game on iOS
5 stars 3 forks source link

AI - move ordering #49

Open ysnrkdm opened 9 years ago

ysnrkdm commented 9 years ago

Difficult because (1) cannot use Array for speed reason and (2) bit board is difficult to express the sense of ordering. Maybe co-routine type move ordering (while( nextMove = getNextMove( board ) )).