Changeset cffd3e in git
- Timestamp:
- Jul 3, 2012, 9:30:01 AM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'ad2543eab51733612ba7d118afc77edca719600e')
- Children:
- 83be980908d4dc3e33ce00c36b4e4013e3251a009e806f5c737b83e8f6e3fc5b677007d9b0269175
- Parents:
- 24a9587366a1382c8229660d2521f0345ca048f0
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipshell.cc
r24a9587 rcffd3e 1977 1977 int r1=(int)(long)LL->m[0].data; 1978 1978 int r2=(int)(long)LL->m[1].data; 1979 if ((r1<=SHORT_REAL_LENGTH) 1979 if (L->nr==2) // complex 1980 R->cf = nInitChar(n_long_C, NULL); 1981 else if ((r1<=SHORT_REAL_LENGTH) 1982 && (r2=SHORT_REAL_LENGTH)) 1983 R->cf = nInitChar(n_R, NULL); 1984 else 1985 R->cf = nInitChar(n_long_R, NULL); 1986 1987 if ((r1<=SHORT_REAL_LENGTH) // should go into nInitChar 1980 1988 && (r2=SHORT_REAL_LENGTH)) 1981 1989 { -
libpolys/coeffs/gnumpfl.cc
r24a9587 rcffd3e 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id$ */5 4 /* 6 5 * ABSTRACT: computations with GMP floating-point numbers -
libpolys/coeffs/mpr_complex.h
r24a9587 rcffd3e 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id$ */7 6 8 7 /* -
libpolys/coeffs/numbers.cc
r24a9587 rcffd3e 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id$ */5 4 6 5 /* -
libpolys/coeffs/shortfl.cc
r24a9587 rcffd3e 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id$ */5 4 6 5 /* … … 546 545 assume( getCoeffType(n) == ID ); 547 546 548 assume( p == NULL ); p;547 assume( p == NULL ); 549 548 550 549 n->cfKillChar = ndKillChar; /* dummy */
Note: See TracChangeset
for help on using the changeset viewer.