#include <stdlib.h>
#include <time.h>

/* This is a really stupid evaluation function that
   does not look at the board, just returning a random
   number.
*/

int chance(int board[7][7], int who) {
   return random() * 1000;
   }

