William,

First of all, alpha3 builds on the macbook perfectly.

Please include the patch below in sage-2.5. It fixes a subtle bug in
NICE where I was using a global variable locally.

# HG changeset patch
# User Robert L Miller <[EMAIL PROTECTED]>
# Date 1178570314 25200
# Node ID 0e3e8e80f792ca31157a9156ceae5e3fd30168fe
# Parent  cc90d781b4537dd2ab8def52ec1164be2c8a4bd0
Fixed subtle typo in NICE

diff -r cc90d781b453 -r 0e3e8e80f792 sage/graphs/graph_isom.py
--- a/sage/graphs/graph_isom.py Sun May 06 07:31:35 2007 -0700
+++ b/sage/graphs/graph_isom.py Mon May 07 13:38:34 2007 -0700
@@ -1290,7 +1290,7 @@ def search_tree(G, Pi, lab=True, dig=Fal
         elif state == 17:
             if verbosity > 0: print 'state: 17'
             if e[k] == 0:
-                l = W[k]
+                li = W[k]
                 for i in range(1,l+1):
                     boo = True
                     for j in range(1,k):
@@ -1298,7 +1298,7 @@ def search_tree(G, Pi, lab=True, dig=Fal
                             boo = False
                             break
                     if boo:
-                        l = [v for v in l if v in Omega[i]]
+                        li = [v for v in li if v in Omega[i]]
                     W[k] = l
             e[k] = 1
             VVV = [v for v in W[k] if v > v[k]]


--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://sage.scipy.org/sage/ and http://modular.math.washington.edu/sage/
-~----------~----~----~----~------~----~------~--~---

Reply via email to