| Commit message (Expand) | Author | Age | Files | Lines |
* | BUG: icc 11 requires complex double, complex alone is not enough to define a ... | David Cournapeau | 2009-12-04 | 1 | -1/+1 |
* | Another attempt at a truly cross-platform nextafterl implementation | mdroe | 2009-11-13 | 2 | -188/+211 |
* | BUG: do not use bitfields for bit-twidling of long doubles. | David Cournapeau | 2009-11-12 | 2 | -99/+233 |
* | ENH: add C implementation of spacing in npymath. | David Cournapeau | 2009-11-10 | 1 | -0/+20 |
* | ENH: make ieee754 a templated file, need for spacing. | David Cournapeau | 2009-11-10 | 1 | -0/+0 |
* | STY: fix hard tab. | David Cournapeau | 2009-11-10 | 1 | -32/+32 |
* | BUG: ppc on darwin has long double aligned on 16 bytes - adjust IEEEl2bits ac... | David Cournapeau | 2009-11-09 | 1 | -0/+16 |
* | ENH: add nextafterl implementation. | David Cournapeau | 2009-11-09 | 1 | -7/+54 |
* | ENH: define union to access exact binary content of long double representatio... | David Cournapeau | 2009-11-09 | 1 | -0/+72 |
* | BUG: float.h inclusion was lost somewhere. | David Cournapeau | 2009-11-09 | 1 | -0/+1 |
* | ENH: put all mandatory headers for npymath in one common header. | David Cournapeau | 2009-11-09 | 5 | -21/+12 |
* | BUG: do not include complex.h in public headers - this cannot work with C++, ... | David Cournapeau | 2009-11-07 | 1 | -0/+4 |
* | BUG: typo when defining internal nextafterf. | David Cournapeau | 2009-11-05 | 1 | -1/+1 |
* | BUG: add missing macros mandatory for internal nextafter implementation. | David Cournapeau | 2009-11-05 | 1 | -0/+40 |
* | BUG: forgot to remove npy_creal/cimag definition in npymath lib, redundant wi... | David Cournapeau | 2009-11-04 | 1 | -2/+2 |
* | ENH: optimize real/imag extraction function, by making them inline. | David Cournapeau | 2009-11-04 | 1 | -24/+0 |
* | Fix indentation for cexp. | David Cournapeau | 2009-11-04 | 1 | -147/+147 |
* | Handle special cases in our custom cexp function. | David Cournapeau | 2009-11-04 | 1 | -4/+53 |
* | Fix typos in some complex definitions. | David Cournapeau | 2009-11-04 | 1 | -2/+2 |
* | Mention difference between simple decorators and implementations for complex ... | David Cournapeau | 2009-11-04 | 1 | -3/+7 |
* | Implement float and long double versions of complex functions. | David Cournapeau | 2009-11-04 | 2 | -87/+125 |
* | Fix our private replacement to clog. | David Cournapeau | 2009-11-04 | 1 | -1/+1 |
* | MS compiler does not like funky initializer for float. | David Cournapeau | 2009-11-04 | 1 | -1/+1 |
* | Fix npy_creal/npy_cimag when no complex support is available. | David Cournapeau | 2009-11-04 | 1 | -4/+10 |
* | Use original npy complex type instead of custom one for npymath. | David Cournapeau | 2009-11-04 | 2 | -27/+26 |
* | Pull cpack into the npy math API, prefix it with npy_, and use it in npymath ... | David Cournapeau | 2009-11-04 | 2 | -37/+13 |
* | Fix csqrt so that only npy_fabs is used, not fabs. | David Cournapeau | 2009-11-04 | 1 | -1/+1 |
* | Fix csqrt so that it does not depend on complex support. | David Cournapeau | 2009-11-04 | 1 | -2/+2 |
* | Implement ccos, csin, clog, carg, cpow complex functions. | David Cournapeau | 2009-11-04 | 1 | -3/+53 |
* | Implement stubs for clog, ccos, csin and cpow. | David Cournapeau | 2009-11-04 | 1 | -2/+18 |
* | Implement csqrt. | David Cournapeau | 2009-11-04 | 1 | -2/+69 |
* | Add cexp function. | David Cournapeau | 2009-11-04 | 1 | -0/+29 |
* | Fix typo. | David Cournapeau | 2009-11-04 | 1 | -1/+1 |
* | Do not use union initializaer: another thing that MS compiler cannot handle. | David Cournapeau | 2009-11-04 | 1 | -2/+4 |
* | npymath now implements cabs, creal and cimag. | David Cournapeau | 2009-11-04 | 2 | -36/+34 |
* | Start implementing complex support. | David Cournapeau | 2009-11-04 | 2 | -1/+128 |
* | BUG: fix compilation of nextafter on MS platforms. | David Cournapeau | 2009-10-30 | 1 | -3/+3 |
* | ENH: implement single and double precision nextafter* for npymath. | David Cournapeau | 2009-10-30 | 1 | -0/+164 |
* | STY: fix indentation. | David Cournapeau | 2009-10-30 | 1 | -9/+9 |
* | REF: put low-leve IEEE-754 routines in separate file. | David Cournapeau | 2009-10-30 | 2 | -30/+35 |
* | Cleanup npy_math_private.h | Charles Harris | 2009-10-20 | 1 | -33/+33 |
* | Cleanup npy_math.c.src. | Charles Harris | 2009-10-20 | 1 | -6/+6 |
* | wrap config header with npy_config.h | David Cournapeau | 2009-09-22 | 1 | -1/+1 |
* | BUG: fix our copysign implementation. | David Cournapeau | 2009-07-27 | 1 | -1/+1 |
* | Add missing SET_HIGH_WORD and SET_LOW_WORD to do bitwise op on IEEE754 double... | David Cournapeau | 2009-07-27 | 1 | -0/+20 |
* | Add our own atan2 function, as a replacement for buggy implementations (like ... | David Cournapeau | 2009-07-21 | 1 | -0/+89 |
* | BUG: npy_math_private was using some endian-related macros without including ... | David Cournapeau | 2009-07-21 | 1 | -4/+6 |
* | BUG: fix logic OR vs. bitwise OR. | David Cournapeau | 2009-07-20 | 1 | -1/+1 |
* | Handle nan entries for hypot. | David Cournapeau | 2009-07-20 | 1 | -1/+11 |
* | Only use npy_-prefixed functions in npy_math. | David Cournapeau | 2009-07-20 | 1 | -16/+16 |