Changeset cc94b0a in git for Singular/iparith.cc
- Timestamp:
- Mar 31, 1998, 11:00:50 AM (25 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- bc82d60fa171675a0c23a3e2051318500187aa39
- Parents:
- c9ea817ef59b4d9f8adaa507840ddb8ff4d4a945
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
rc9ea817 rcc94b0a 154 154 { "else", 0, ELSE_CMD , ELSE_CMD}, 155 155 { "eval", 0, EVAL , EVAL}, 156 { "example", 0, EXAMPLE_CMD , EXAMPLE_CMD}, 156 157 { "execute", 0, EXECUTE_CMD , EXECUTE_CMD}, 157 158 { "export", 0, EXPORT_CMD , EXPORT_CMD}, … … 301 302 302 303 /* other reserved words:scanner.l */ 303 { "pause", 0, -1 , 0},304 { "pause", 2, -1 , 0}, 304 305 { "while", 0, -1 , 0}, 305 306 { "for", 0, -1 , 0}, 306 307 { "help", 0, -1 , 0}, 307 { "example", 0, -1 , 0},308 308 { "newline", 0, -1 , 0}, 309 309 { "exit", 0, -1 , 0}, … … 2184 2184 { 2185 2185 poly p=(poly)v->CopyD(); 2186 pCleardenom(p);2186 if (p!=NULL) pCleardenom(p); 2187 2187 res->data = (char *)p; 2188 2188 return FALSE;
Note: See TracChangeset
for help on using the changeset viewer.