Team name: 5 Gorillas
Program name: barbobot
Team members:
    Grant Glouser <glouser@cs.stanford.edu>
    Software Engineer, PalmSource, Inc.

Language used: ocaml (This is my second real project in ocaml, the
first being a simpler programming challenge.  My primary languages are
C/C++ and Python.)

Strategy: This robot uses a straight-ahead strategy - grab the closest,
biggest packages and deliver them as fast as possible.  Obvious
information about packages and other robots is tracked.  Some
execution monitoring is used.  For example, if we get off course on
the way to a pick-up or drop-off, we will detect that and re-plan the
route.

Because we try to carry more than one package at a time,
packages dropped en-route to the drop-off are ignored.  If *all* the
packages are dropped, then we will try to pick more up.

There is no bidding strategy.  Bids 1 every turn.

Because the barbobot plays a straight-ahead game, I expect it to be
good fodder for more aggressive robots that try to get pushy. :)
