/* This file is part of MINPANTU.
   See file `COPYRIGHT' for pertinent copyright notices.

   Ask the computer to make a move. */


#ifndef INCL_COMPUTER_PLAYER
#define INCL_COMPUTER_PLAYER 1


extern void choose_move(int effort, int player,
			double *ball_state,
			int *ball_is_in_base,
			int player_goals, int opponent_goals);

/* The effort that correspond to computer opponents "no player" and
   "random moves" */
#define EFFORT_NO_PLAYER (-1)
#define EFFORT_RANDOM_PLAYER 0


#endif /* INCL_DEFS */

