Changeset fc866f6 in git
- Timestamp:
- May 6, 2016, 1:39:10 PM (7 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 143b1768bbdd2f1e7a969648d2afe2406ed6c991
- Parents:
- 586e009fbfed8451a30a85fe4ca44c6b082c2786
- Files:
-
- 3 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r586e00 rfc866f6 4512 4512 static BOOLEAN jjL2R(leftv res, leftv v) 4513 4513 { 4514 res->data=(char *)syConvList((lists)v->Data() ,FALSE);4514 res->data=(char *)syConvList((lists)v->Data()); 4515 4515 if (res->data != NULL) 4516 4516 return FALSE; -
Singular/ipconv.cc
r586e00 rfc866f6 322 322 } 323 323 324 /*325 static void * iiR2L(void * data)326 {327 syStrategy tmp=(syStrategy)data;328 return (void *)syConvRes(tmp,TRUE);329 }330 */331 324 static void iiR2L_l(leftv out, leftv in) 332 325 { … … 340 333 } 341 334 342 static void * iiL2R(void * data) 343 { 344 return (void *)syConvList((lists)data,TRUE); 335 static void iiL2R(leftv out, leftv in) 336 { 337 int add_row_shift = 0; 338 lists l=(lists)in->Data(); 339 intvec *ww=NULL; 340 if (l->nr>=0) ww=(intvec *)atGet(&(l->m[0]),"isHomog",INTVEC_CMD); 341 out->data=(void *)syConvList(l); 342 if (ww!=NULL) 343 { 344 intvec *weights=ivCopy(ww); 345 atSet(out,"isHomog",weights,INTVEC_CMD); 346 } 345 347 } 346 348 -
Singular/ipshell.cc
r586e00 rfc866f6 3169 3169 * converts a list of modules into a resolution 3170 3170 */ 3171 syStrategy syConvList(lists li ,BOOLEAN toDel)3171 syStrategy syConvList(lists li) 3172 3172 { 3173 3173 int typ0; … … 3192 3192 result = NULL; 3193 3193 } 3194 if (toDel) li->Clean();3195 3194 return result; 3196 3195 } -
Singular/ipshell.h
r586e00 rfc866f6 106 106 syStrategy syForceMin(lists li); 107 107 // converts a list of modules into a resolution 108 syStrategy syConvList(lists li ,BOOLEAN toDel);108 syStrategy syConvList(lists li); 109 109 110 110 BOOLEAN syBetti1(leftv res, leftv u); -
Singular/table.h
r586e00 rfc866f6 1237 1237 { STRING_CMD, LINK_CMD, D(iiS2Link) , NULL_VAL }, 1238 1238 // resolution -> list 1239 { RESOLUTION_CMD, LIST_CMD, NULL_VAL /*iiR2L*/, D(iiR2L_l) },1239 { RESOLUTION_CMD, LIST_CMD, NULL_VAL , D(iiR2L_l) }, 1240 1240 // list -> resolution 1241 { LIST_CMD, RESOLUTION_CMD, D(iiL2R) , NULL_VAL},1241 { LIST_CMD, RESOLUTION_CMD, NULL_VAL , D(iiL2R) }, 1242 1242 // qring -> ring 1243 1243 { QRING_CMD, RING_CMD, D(iiDummy), NULL_VAL}, -
Tst/Short/ok_s.lst
r586e00 rfc866f6 60 60 bug_tr758 61 61 bug_tr759 62 bug_tr760 62 63 bug_genus_etc 63 64 conv_bi
Note: See TracChangeset
for help on using the changeset viewer.