---------------------General Instructions---------------------------

You will replace the function in better_ArrivalTime.h with your own code.  Don't
rename the function or the file.  Currently, this function just returns
StayHomeVal, signalling a desire to stay at home no matter what.  You must
replace this with a smarter function.  The function should return the minutes
BEFORE 8 AM you intend to arrive at the Target - this should be a positive
number of minutes, or StayHomeVal if you want to stay home that week.

---------------------Your function arguments---------------------------------

Do not change the arguments for the function.  They are all you have to work
with.  They are:

myVal - This is your v for this cycle.  
myOpCost - This is o per minute for this cycle.
myCash - This is the contents of your bank account. 
arrivalTimes - This is a sorted vector of all arrival times the previous cycle
(for those unfamiliar with the STL vectors can be indexed like arrays).  

--------------------Other important values-------------------------------------

These are all defined in generalInclude.h (the random variables themselves are
generated in wiiLine.cpp).  You can change them if you'd like to explore
different variations on the general problem.  They are:

m - This is normally distributed with a mean of WiisPerWeekMean and standard
    deviation of WiisPerWeekStdDev.  You don't know the exact value for a given
    week.  

v - This is normally distributed for all players with a mean of WiiValMean and a
    standard deviation of WiiValStdDev.  You don't know the particular values
    for all players in a given week.

o - This is uniformly distributed in a range between
    OpportunityCostPerMinuteLowVal and OpportunityCostPerMinuteHighVal.

c - This is a constant value called WiiCost.  

You begin with Initial Money dollars.  If at any point you have fewer dollars
than it takes to buy a Wii you cannot buy one and lose the cost of travel plus
your o*t.  This means you can get negative money and cannot dig yourself out of
the hole.  Make sure your function checks that you still have enough money left
to pay for the Wii, and otherwise to stay home.

-------------------Building and running the program---------------------

To build run 'make depend; make all'

Run the program with './wiiLine'

--------------------Program Output --------------------------------------

The program will output the dollar amounts in each agent's bank account at the
end of the 5000 cycles.  There are 80 total agents - 79 of are random agents
controlled by random_ArrivalTime.h, and the last one will be your
better_ArrivalTime agent. Your agent's ID number will be 79 in the output.
