Changeset 94a065c in git
- Timestamp:
- Aug 12, 2011, 5:19:07 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- e824171d985f5ae877a9d889f80c776454e5db4d
- Parents:
- cfecd22c01301e6e57986bb28c493771a672a424
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-08-12 17:19:07+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:22:44+01:00
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
rcfecd2 r94a065c 4124 4124 static BOOLEAN jjL2R(leftv res, leftv v) 4125 4125 { 4126 res->data=(char *)syConvList((lists)v->Data() );4126 res->data=(char *)syConvList((lists)v->Data(),FALSE); 4127 4127 if (res->data != NULL) 4128 4128 return FALSE; … … 4209 4209 typedef struct snumber_dummy *number_dummy; 4210 4210 4211 number_dummy z=(number )omAlloc(sizeof(snumber_dummy));4211 number_dummy z=(number_dummy)omAlloc(sizeof(snumber_dummy)); 4212 4212 #if defined(LDEBUG) 4213 4213 z->debug=123456; … … 4431 4431 return TRUE; 4432 4432 } 4433 res->data = (char *)(long)n_Int(pGetCoeff(p),currRing );4433 res->data = (char *)(long)n_Int(pGetCoeff(p),currRing->cf); 4434 4434 return FALSE; 4435 4435 } … … 6359 6359 if(v4!=NULL) 6360 6360 { 6361 w=iv2array((intvec *)v4->Data() );6361 w=iv2array((intvec *)v4->Data(),currRing); 6362 6362 short *w0=w+1; 6363 6363 int i=currRing->N; … … 7189 7189 poly h0 = pSubst(pCopy(h), xIndex, NULL); 7190 7190 intvec* v = NULL; 7191 ideal i = singclap_factorize(h0, &v, 0 );7191 ideal i = singclap_factorize(h0, &v, 0,currRing); 7192 7192 7193 7193 ivTest(v); -
Singular/table.h
rcfecd2 r94a065c 46 46 ,{D(jjCHAR), CHARACTERISTIC_CMD, INT_CMD, QRING_CMD , ALLOW_PLURAL |ALLOW_RING} 47 47 #ifdef HAVE_FACTORY 48 ,{D(jjCHARSERIES), CHAR_SERIES_CMD, MATRIX_CMD, IDEAL_CMD , NO_PLURAL |NO_RING} 48 // need LIBFAC 49 //,{D(jjCHARSERIES), CHAR_SERIES_CMD, MATRIX_CMD, IDEAL_CMD , NO_PLURAL |NO_RING} 49 50 #else 50 51 ,{ jjWRONG , CHAR_SERIES_CMD, MATRIX_CMD, IDEAL_CMD , NO_PLURAL |NO_RING} -
libpolys/coeffs/coeffs.h
rcfecd2 r94a065c 609 609 { 610 610 assume(cf != NULL); assume(cf->cfImPart!=NULL); 611 return cf->cfIm part(i,cf);611 return cf->cfImPart(i,cf); 612 612 } 613 613
Note: See TracChangeset
for help on using the changeset viewer.