>> + public static enum Drink {
>> +
>> + Beer(15), Wine(17), Champagne(21), WhiteRussian(22),
>> + SingleMalt(30);
>> +
>> +
>> + public long drunk() {
>> + return drunkFactor;
>> + }
I think this isn't an independent value. This isn't even a Markov
chain as it doesn't depend on the last state of the observed object
and the drink to follow -- full history of drinks consumed so far
would have to be considered, their order and quantities matter (i.e.,
beer after champagne, singlemalt after beer etc.). Overflows (or
so-called burst points) would certainly have to be empirically
established as there is no theoretical model for them known in
literature...
Dawid
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]