From 11a696834ceb7a7152af42ef0a088416c16541fc Mon Sep 17 00:00:00 2001 From: tailor Date: Mon, 28 Nov 2005 01:59:58 +0000 Subject: [PATCH 1/1] anda bien por lo visto --- src/filosofos2.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/filosofos2.py b/src/filosofos2.py index da6fa8b..37f2cd2 100644 --- a/src/filosofos2.py +++ b/src/filosofos2.py @@ -61,7 +61,6 @@ class filosofo(threading.Thread): self.dejarPalitoIzquierdo() self.dejarPalitoDerecho() - print 'Soy '+str(self.id)+' y solte los palitos' return True else: return False @@ -71,10 +70,16 @@ class filosofo(threading.Thread): def run(self): while not self.lleno(): + self.pensar() self.agarrarPalitoDerecho() self.agarrarPalitoIzquierdo() - if not self.comer(): - self.pensar() + self.comer() + +# while not self.lleno(): +# self.agarrarPalitoDerecho() +# self.agarrarPalitoIzquierdo() +# if not self.comer(): +# self.pensar() if __name__ == '__main__': if len(sys.argv) < 3: -- 2.43.0