]> gitweb.pimeys.fr Git - sudoku.git/commitdiff
Affichage de l'état avant de faire des hypothèses
authorVincent Le Gallic <legallic@crans.org>
Thu, 23 Jan 2014 13:45:53 +0000 (14:45 +0100)
committerVincent Le Gallic <legallic@crans.org>
Thu, 23 Jan 2014 13:45:53 +0000 (14:45 +0100)
sudoku.py

index c893bce8699fcb06c222de4920950b2f33e2f19c..71dd6de16a94743aed0fb9282b1d564db708af17 100755 (executable)
--- 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