From ab983f21e93306a60a7f53060413be9aaf720f03 Mon Sep 17 00:00:00 2001
From: Jdrezen <jeremie.drezen@gmail.com>
Date: Mon, 17 May 2021 17:03:17 +0200
Subject: [PATCH] Utilisation de limitedPlotChart pour tester

---
 philosopher_example/controleurPhilosophersExample.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/philosopher_example/controleurPhilosophersExample.py b/philosopher_example/controleurPhilosophersExample.py
index 6e6fe56..b8bdbe0 100644
--- a/philosopher_example/controleurPhilosophersExample.py
+++ b/philosopher_example/controleurPhilosophersExample.py
@@ -13,10 +13,10 @@ class ControleurPhilosophersExample(Controleur):
         self.__numberPhilosopher = 10
         self.__barChart = []
         self.__barChart.append(self.addBarChart('Eaten Pastas'))
-        self.__barChart.append(self.addPlotChart('Hours of tkinking'))
+        self.__barChart.append(self.addLimitedPlotChart('Hours of tkinking',5))
         self.setPolicy(self.__barChart[1],0,"ro")
 
-        self.__barChart.append(self.addLimitedPlotChart('Hours of hunger',100))
+        self.__barChart.append(self.addLimitedPlotChart('Hours of hunger',5))
         self.addCurve(self.__barChart[2],'g+-')
 
     def initialisation(self):
-- 
GitLab