I apologize if the code is hard to follow. This is the classic dining philosophers problem, where 5 philosophers are eating, but there are only 5 sticks - and you need two to eat.

These are the instructions, if anyone is interested: http://www.kth.se/polopoly_fs/1.260940!/Menu/general/column-content/attachment/philosophers.pdf

I'm sorry I had to edit the code away, I asked a moderator to remove it but got no answer. I hope I'm not robbing anyone of their well-deserved reputation points, since I got great help. However, someone (I'm guessing my prof) mailed me and made me aware of the fact that others might find this and steal it.

Output:

11> dinner:start().
<0.85.0>
12> 
=ERROR REPORT==== 10-Nov-2011::02:19:10 ===
 Error in process <0.85.0> with exit value: {undef,[{uniform,random,[500]}, {eater,dream,5},{dinner,init,0}]}

Thanks a lot if you even read through all of this, I haven't learnt how to read the error reports of erlang yet. If you can, and want to tell me what it means please do.

link|improve this question

58% accept rate
feedback

2 Answers

up vote 8 down vote accepted

I think the problem is that you've got three modules: dinner, eater, and chopstick, but try to call philospher:start in your dinner:init/0 function. Try eater:start instead.

The second problem is the order of module and function name when generating random numbers; replace uniform:random with random:uniform in your eater.erl:

1> dinner:start().
<0.35.0>
Confucios received a chopstick
Confucios received a chopstick
Confucios started eating
Confucios put back two chopsticks
Confucios received a chopstick
Confucios received a chopstick
Confucios started eating
Confucios put back two chopsticks
Confucios received a chopstick
Confucios received a chopstick
Confucios started eating
Confucios put back two chopsticks
Confucios received a chopstick
Confucios received a chopstick
Confucios started eating
Confucios put back two chopsticks
Confucios received a chopstick
Confucios received a chopstick
Confucios started eating
Confucios put back two chopsticks
Avicenna received a chopstick
Avicenna received a chopstick
Avicenna started eating
...

This pretty quickly shows the third problem -- something we should have spotted from the first error report -- that the eaters aren't actually in their own processes. So edit eater.erl so that the start() function reads:

start(Hungry, Right, Left, Name, Ctrl) ->
    spawn_link(fun() -> dream(Hungry, Right, Left, Name, Ctrl) end).

Now it works as intended:

1> dinner:start().
<0.35.0>
Confucios received a chopstick
Plato received a chopstick
Confucios received a chopstick
Confucios started eating
Descartes received a chopstick
Kant received a chopstick
Confucios put back two chopsticks
Avicenna received a chopstick
...

Thanks. This was good fun.

link|improve this answer
1  
The "second problem" from sarnold's answer still isn't fixed. – dsmith Nov 10 '11 at 5:44
I added comments about the problems in the opening post, thanks, it works! – Rickard Nov 10 '11 at 10:11
feedback

change wherever you are calling: uniform:random/1 to random:uniform/1 and the exception will be gone

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.