Changeset 5743:6a88526f2e72
- Timestamp:
- 08/17/07 18:15:01 (6 years ago)
- Branch:
- default
- Files:
-
- 3 edited
- 1 moved
-
sage/rings/real_rqdf.pyx (modified) (1 diff)
-
sage/rings/rqdf_fix.h (moved) (moved from sage/rings/cygwinfix.h) (1 diff)
-
sage/rings/stdint.h (modified) (1 diff)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sage/rings/real_rqdf.pyx
r5480 r5743 86 86 from sage.structure.parent_gens cimport ParentWithGens 87 87 88 cdef extern from " cygwinfix.h": pass89 88 cdef extern from "rqdf_fix.h": pass 89 cdef extern from "ieeefp.h": pass 90 90 91 91 cdef qd *qd_from_mpz(mpz_t z): -
sage/rings/rqdf_fix.h
r4357 r5743 1 // cygwinfix.h 2 // defines NAN and INFINITY on cygwin 1 // defines NAN and INFINITY on solaris, etc. 3 2 4 #if defined(__CYGWIN__) 3 4 #if defined(__sun) 5 5 6 #define NAN (0.0/0.0) 6 #define INFINITY HUGE_VALF 7 #define INFINITY __builtin_huge_valf() 8 9 #include <ieeefp.h> # needed to define the function "infinite" 10 7 11 #endif -
sage/rings/stdint.h
r1788 r5743 1 2 #if defined(__sun) 3 typedef int int_fast32_t; 4 typedef long int_fast64_t; 5 #else 1 6 #include <stdint.h> 7 #endif 2 8 3 9 #define INTEGER_MOD_INT32_LIMIT 46341 // = ceil(sqrt(2^31-1)) 4 10 #define INTEGER_MOD_INT64_LIMIT 2147483647 // = 2^31-1 for now, should be 3037000500LL = ceil(sqrt(2^63-1)) 11 -
setup.py
r5714 r5743 349 349 givaro_gfq, \ 350 350 351 libsingular, \351 # libsingular, \ 352 352 353 353 ## matrix_rational_sparse,
Note: See TracChangeset
for help on using the changeset viewer.
