# Add the following lines to the bot section of your main
#   bots file if you want to use this bot.

# You may need to give the full path to the java binary if it
#   is not in your path already. Also make sure you have the
#   latest version of Java installed.

# Jeff's random bots
# All bots generate all possible turns


# j1 picks at random; generates all possible unique postions and picks one
j1              ./bot_JeffBacher              java -classpath test.jar arimaa_bb.RandomPlayer 1 [seed]

# j2 pick a reasonable move at random, else any move
j2              ./bot_JeffBacher              java -classpath test.jar arimaa_bb.RandomPlayer 2 [seed]

# j3 picks a winning move if possible, else j2
j3              ./bot_JeffBacher              java -classpath test.jar arimaa_bb.RandomPlayer 3 [seed]

# j4 runs eval, picks at random out of top 10 moves
j4              ./bot_JeffBacher              java -classpath test.jar arimaa_bb.RandomPlayer 4 [seed]

