Changeset 7459:3e6550d57b96


Ignore:
Timestamp:
12/01/07 11:47:16 (5 years ago)
Author:
mabshoff@…
Branch:
default
Message:

Oops, revert a patch that should have never been applied in the first place.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/matrix/matrix_integer_dense.pyx

    r7451 r7459  
    16271627        sage: add([Q[i]*M[i] for i in range(n)]) 
    16281628        -1 
    1629  
    1630         TESTS: 
    1631             sage: A = random_matrix(ZZ,15,10) 
    1632             sage: A.LLL() 
    1633             Traceback (most recent call last): 
    1634             ... 
    1635             TypeError: Number of rows must not be larger than number of columns. 
    1636          
     1629             
    16371630        ALGORITHM: Uses NTL or fpLLL. 
    16381631 
     
    16411634            used algorithms. 
    16421635        """ 
    1643         if self.nrows() > self.ncols(): 
    1644             raise TypeError("Number of rows must not be larger than number of columns.") 
    16451636 
    16461637        import sage.libs.ntl.all 
Note: See TracChangeset for help on using the changeset viewer.