#4097: [with patch, needs review] matrix automorphism groups
---------------------------+------------------------------------------------
 Reporter:  rlm            |        Owner:  rlm       
     Type:  defect         |       Status:  new       
 Priority:  major          |    Milestone:  sage-3.1.3
Component:  coding theory  |   Resolution:            
 Keywords:                 |  
---------------------------+------------------------------------------------
Comment (by wdj):

 This failure is on an amd64 gutsy gibbon box (and uses the patch emailed
 to me by
 Robert, which I guess is the same as the one attached to this ticket):

 {{{
 [EMAIL PROTECTED]:~/sagefiles/sage-3.1.2.rc1$ ./sage -t
 devel/sage/sage/groups/perm_gps/partn_ref/refinement_matrices.pyx
 sage -t
 
devel/sage/sage/groups/perm_gps/partn_ref/refinement_matrices.pyx**********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 5:
     sage: import sage.groups.perm_gps.partn_ref.refinement_matrices
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_0[2]>", line 1, in <module>
         import sage.groups.perm_gps.partn_ref.refinement_matrices###line
 5:
     sage: import sage.groups.perm_gps.partn_ref.refinement_matrices
     ImportError: No module named refinement_matrices
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 111:
     sage: from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[2]>", line 1, in <module>
         from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct###line 111:
     sage: from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct
     ImportError: No module named refinement_matrices
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 113:
     sage: M = MatrixStruct(matrix(GF(3),[[0,1,2],[0,2,1]]))
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[3]>", line 1, in <module>
         M =
 
MatrixStruct(matrix(GF(Integer(3)),[[Integer(0),Integer(1),Integer(2)],[Integer(0),Integer(2),Integer(1)]]))###line
 113:
     sage: M = MatrixStruct(matrix(GF(3),[[0,1,2],[0,2,1]]))
     NameError: name 'MatrixStruct' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 114:
     sage: M.run()
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[4]>", line 1, in <module>
         M.run()###line 114:
     sage: M.run()
     NameError: name 'M' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 115:
     sage: M.automorphism_group()
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[5]>", line 1, in <module>
         M.automorphism_group()###line 115:
     sage: M.automorphism_group()
     NameError: name 'M' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 117:
     sage: M.canonical_relabeling()
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[6]>", line 1, in <module>
         M.canonical_relabeling()###line 117:
     sage: M.canonical_relabeling()
     NameError: name 'M' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 120:
     sage: M =
 MatrixStruct(matrix(GF(3),[[0,1,2],[0,2,1],[1,0,2],[1,2,0],[2,0,1],[2,1,0]]))
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[7]>", line 1, in <module>
         M =
 
MatrixStruct(matrix(GF(Integer(3)),[[Integer(0),Integer(1),Integer(2)],[Integer(0),Integer(2),Integer(1)],[Integer(1),Integer(0),Integer(2)],[Integer(1),Integer(2),Integer(0)],[Integer(2),Integer(0),Integer(1)],[Integer(2),Integer(1),Integer(0)]]))###line
 120:
     sage: M =
 MatrixStruct(matrix(GF(3),[[0,1,2],[0,2,1],[1,0,2],[1,2,0],[2,0,1],[2,1,0]]))
     NameError: name 'MatrixStruct' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 121:
     sage: M.automorphism_group()[1] == 6
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[8]>", line 1, in <module>
         M.automorphism_group()[Integer(1)] == Integer(6)###line 121:
     sage: M.automorphism_group()[1] == 6
     NameError: name 'M' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 124:
     sage: M =
 MatrixStruct(matrix(GF(3),[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2]]))
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[9]>", line 1, in <module>
         M =
 
MatrixStruct(matrix(GF(Integer(3)),[[Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(0),Integer(1),Integer(2)]]))###line
 124:
     sage: M =
 MatrixStruct(matrix(GF(3),[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2]]))
     NameError: name 'MatrixStruct' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 125:
     sage: M.automorphism_group()[1] == factorial(14)
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_1[10]>", line 1, in <module>
         M.automorphism_group()[Integer(1)] ==
 factorial(Integer(14))###line 125:
     sage: M.automorphism_group()[1] == factorial(14)
     NameError: name 'M' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 161:
     sage: from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_2[2]>", line 1, in <module>
         from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct###line 161:
     sage: from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct
     ImportError: No module named refinement_matrices
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 163:
     sage: M = MatrixStruct(matrix(GF(3),[[0,1,2],[0,2,1]]))
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_2[3]>", line 1, in <module>
         M =
 
MatrixStruct(matrix(GF(Integer(3)),[[Integer(0),Integer(1),Integer(2)],[Integer(0),Integer(2),Integer(1)]]))###line
 163:
     sage: M = MatrixStruct(matrix(GF(3),[[0,1,2],[0,2,1]]))
     NameError: name 'MatrixStruct' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 164:
     sage: M.automorphism_group()
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_2[4]>", line 1, in <module>
         M.automorphism_group()###line 164:
     sage: M.automorphism_group()
     NameError: name 'M' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 186:
     sage: from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_3[2]>", line 1, in <module>
         from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct###line 186:
     sage: from sage.groups.perm_gps.partn_ref.refinement_matrices import
 MatrixStruct
     ImportError: No module named refinement_matrices
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 188:
     sage: M = MatrixStruct(matrix(GF(3),[[0,1,2],[0,2,1]]))
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_3[3]>", line 1, in <module>
         M =
 
MatrixStruct(matrix(GF(Integer(3)),[[Integer(0),Integer(1),Integer(2)],[Integer(0),Integer(2),Integer(1)]]))###line
 188:
     sage: M = MatrixStruct(matrix(GF(3),[[0,1,2],[0,2,1]]))
     NameError: name 'MatrixStruct' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 189:
     sage: M.canonical_relabeling()
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_3[4]>", line 1, in <module>
         M.canonical_relabeling()###line 189:
     sage: M.canonical_relabeling()
     NameError: name 'M' is not defined
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 253:
     sage: import sage.groups.perm_gps.partn_ref.refinement_matrices
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_4[2]>", line 1, in <module>
         import sage.groups.perm_gps.partn_ref.refinement_matrices###line
 253:
     sage: import sage.groups.perm_gps.partn_ref.refinement_matrices
     ImportError: No module named refinement_matrices
 **********************************************************************
 File "/home/wdj/sagefiles/sage-3.1.2.rc1/tmp/refinement_matrices.py", line
 254:
     sage:
 sage.groups.perm_gps.partn_ref.refinement_matrices.random_tests()
 Exception raised:
     Traceback (most recent call last):
       File
 "/home/wdj/sagefiles/sage-3.1.2.rc1/local/lib/python2.5/doctest.py", line
 1228, in __run
         compileflags, 1) in test.globs
       File "<doctest __main__.example_4[3]>", line 1, in <module>
 sage.groups.perm_gps.partn_ref.refinement_matrices.random_tests()###line
 254:
     sage:
 sage.groups.perm_gps.partn_ref.refinement_matrices.random_tests()
     AttributeError: 'module' object has no attribute 'refinement_matrices'
 **********************************************************************
 5 items had failures:
    1 of   3 in __main__.example_0
    9 of  11 in __main__.example_1
    3 of   5 in __main__.example_2
    3 of   5 in __main__.example_3
    2 of   4 in __main__.example_4
 ***Test Failed*** 18 failures.
 For whitespace errors, see the file
 /home/wdj/sagefiles/sage-3.1.2.rc1/tmp/.doctest_refinement_matrices.py
          [1.4 s]
 exit code: 1024

 ----------------------------------------------------------------------
 The following tests failed:


         sage -t
 devel/sage/sage/groups/perm_gps/partn_ref/refinement_matrices.pyx
 Total time for all tests: 1.4 seconds
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4097#comment:2>
SAGE <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of 
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to