Changeset 7661:5ecfb83c6b5b
- Timestamp:
- 11/26/07 22:14:25 (6 years ago)
- Branch:
- default
- Parents:
- 7660:62b7be191970 (diff), 7422:dc8dedef562f (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. - Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sage/rings/polynomial/polynomial_element.pyx
r7393 r7423 2312 2312 sage: f.roots() 2313 2313 [(1, 1)] 2314 sage: f.roots(ring=CC) 2315 [(1.00000000000000, 1), (-0.500000000000000 + 0.86602540378443 8*I, 1), (-0.500000000000000 - 0.866025403784...*I, 1)]2314 sage: f.roots(ring=CC) # note -- low order bits slightly different on ppc. 2315 [(1.00000000000000, 1), (-0.500000000000000 + 0.86602540378443...*I, 1), (-0.500000000000000 - 0.86602540378443...*I, 1)] 2316 2316 sage: f = (x^3 - 1)^2 2317 2317 sage: f.roots() … … 2747 2747 EXAMPLES: 2748 2748 sage: x = polygen(ZZ) 2749 sage: (x^3 - 1).complex_roots() 2750 [1.00000000000000, -0.500000000000000 + 0.86602540378443 8*I, -0.500000000000000 - 0.866025403784...*I]2749 sage: (x^3 - 1).complex_roots() # note: low order bits slightly different on ppc. 2750 [1.00000000000000, -0.500000000000000 + 0.86602540378443...*I, -0.500000000000000 - 0.86602540378443...*I] 2751 2751 2752 2752 TESTS: -
setup.py
r7388 r7661 1205 1205 1206 1206 data_files = [('dsage/web/static', 1207 ['sage/dsage/web/static/dsage_web.css', 1208 'sage/dsage/web/static/dsage_web.js', 1209 'sage/dsage/web/static/jquery-latest.js', 1210 'sage/dsage/web/static/jquery.tablesorter.pack.js', 1211 'sage/dsage/web/static/index.html'])], 1207 ['sage/dsage/web/static/dsage_web.css', 1208 'sage/dsage/web/static/dsage_web.js', 1209 'sage/dsage/web/static/jquery-latest.js', 1210 'sage/dsage/web/static/jquery.tablesorter.pack.js', 1211 'sage/dsage/web/static/jquery.history.js', 1212 'sage/dsage/web/static/asc.gif', 1213 'sage/dsage/web/static/desc.gif', 1214 'sage/dsage/web/static/bg.gif', 1215 'sage/dsage/README.html']), 1216 ('dsage/web/', 1217 ['sage/dsage/web/index.html'])], 1212 1218 1213 1219 ext_modules = ext_modules, -
setup.py
r7654 r7661 211 211 sources = ["sage/libs/pari/gen.pyx"], 212 212 libraries = ['pari', 'gmp']) 213 214 cremona_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 221 cremona_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 ) 213 227 214 228 … … 507 521 matrix_mod2_dense, 508 522 matrix_mpolynomial_dense, \ 523 524 cremona_mat, \ 525 cremona_homspace, \ 509 526 510 527 finite_field_givaro, \ … … 1105 1122 'sage.libs.pari', 1106 1123 'sage.libs.singular', 1107 'sage.libs.symmetrica', 1124 'sage.libs.symmetrica', 1125 'sage.libs.cremona', 1108 1126 1109 1127 'sage.logic',
Note: See TracChangeset
for help on using the changeset viewer.
