Changeset 7593:2caef7952cfd


Ignore:
Timestamp:
11/23/07 09:02:38 (6 years ago)
Author:
Burcin Erocal <burcin@…>
Branch:
default
Parents:
7592:62b9ea6da235 (diff), 7402:cad57dea1832 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge with 2.8.13.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • setup.py

    r7388 r7593  
    879879              ), \ 
    880880 
     881    Extension('sage.rings.polynomial.polybori', 
     882              sources = ['sage/rings/polynomial/polybori.pyx'], 
     883              libraries=['polybori','pboriCudd','groebner'], 
     884              include_dirs=[SAGE_ROOT+'/local/include/cudd', 
     885                            SAGE_ROOT+'/local/include/polybori', 
     886                            SAGE_ROOT+'/local/include/polybori/groebner'], 
     887              language = 'c++'), \ 
    881888                             
    882889    ] 
  • setup.py

    r7587 r7593  
    211211                 sources = ["sage/libs/pari/gen.pyx"], 
    212212                 libraries = ['pari', 'gmp']) 
     213 
     214cremona_mat = Extension('sage.libs.cremona.mat', 
     215                       sources = ["sage/libs/cremona/mat.pyx"], 
     216                       libraries = ['g0nntl', 'jcntl', 'gmpxx', 'ntl', 'gmp', 'm', 'stdc++', ], 
     217                       language='c++', 
     218                       define_macros = [("NTL_ALL",None)] 
     219                       ) 
     220 
     221cremona_homspace = Extension('sage.libs.cremona.homspace', 
     222                       sources = ["sage/libs/cremona/homspace.pyx"], 
     223                       libraries = ['g0nntl', 'jcntl', 'gmpxx', 'ntl', 'gmp', 'm', 'stdc++', 'pari', 'curvesntl'], 
     224                       language='c++', 
     225                       define_macros = [("NTL_ALL",None)] 
     226                       ) 
    213227 
    214228 
     
    507521     matrix_mod2_dense, 
    508522     matrix_mpolynomial_dense, \ 
     523 
     524     cremona_mat, \ 
     525     cremona_homspace, \ 
    509526 
    510527     finite_field_givaro, \ 
     
    11121129                     'sage.libs.pari', 
    11131130                     'sage.libs.singular', 
    1114                      'sage.libs.symmetrica',  
     1131                     'sage.libs.symmetrica', 
     1132                     'sage.libs.cremona', 
    11151133 
    11161134                     'sage.logic', 
Note: See TracChangeset for help on using the changeset viewer.