Changeset 146d90 in git
- Timestamp:
- Apr 7, 2011, 4:04:52 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 41ead03e5a3cc4f469e143e906c9a0f995435930
- Parents:
- 83d8d0b7e4cc03cf649a7affbe85133a3af20b04
- Location:
- Singular
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/blackbox.cc
r83d8d0b r146d90 84 84 } 85 85 86 BOOLEAN blackbox_default_OpM(int op,leftv l, leftv r)86 BOOLEAN blackbox_default_OpM(int op,leftv res, leftv args) 87 87 { 88 return WrongOp("blackbox_OpM", op, r); 88 if (op==LIST_CMD) 89 { 90 res->rtyp=LIST_CMD; 91 return jjLIST_PL(res,args); 92 } 93 return WrongOp("blackbox_OpM", op, args); 89 94 } 90 95 -
Singular/iparith.cc
r83d8d0b r146d90 6810 6810 return b; 6811 6811 } 6812 staticBOOLEAN jjLIST_PL(leftv res, leftv v)6812 BOOLEAN jjLIST_PL(leftv res, leftv v) 6813 6813 { 6814 6814 int sl=0; -
Singular/ipshell.h
r83d8d0b r146d90 68 68 BOOLEAN jjBETTI2_ID(leftv res, leftv u, leftv v); 69 69 BOOLEAN jjIMPORTFROM(leftv res, leftv u, leftv v); 70 BOOLEAN jjLIST_PL(leftv res, leftv v); 70 71 71 72 BOOLEAN jjVARIABLES_P(leftv res, leftv u); -
Singular/newstruct.cc
r83d8d0b r146d90 248 248 } 249 249 default: 250 Werror("op %d not implemented for type %d",op,args->Typ());250 return blackbox_default_OpM(op,res,args); 251 251 break; 252 252 }
Note: See TracChangeset
for help on using the changeset viewer.