From 0884c3957c6854ffbbb9b388f1eadce016bc2181 Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Thu, 23 Jan 2014 14:45:53 +0100 Subject: [PATCH] =?utf8?q?Affichage=20de=20l'=C3=A9tat=20avant=20de=20fair?= =?utf8?q?e=20des=20hypoth=C3=A8ses?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sudoku.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sudoku.py b/sudoku.py index c893bce..71dd6de 100755 --- a/sudoku.py +++ b/sudoku.py @@ -44,6 +44,8 @@ class Grid(object): """Affiche la valeur de la profondeur d'hypothèse si on n'a jamais atteint ce niveau""" global DEPTH if self.depth > DEPTH: + # On affiche l'état avant de faire l'hypothèse + print self print "Profondeur : %s" % self.depth DEPTH += 1 -- 2.39.2