Changeset 62aecd in git
- Timestamp:
- May 11, 1998, 3:19:58 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- ad523bfd7b961919b952f71d36c00847fc5c9f0c
- Parents:
- 540479614febf9bda82e5ebb24f5a4e19e3b5cdf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/extra.cc
r540479 r62aecd 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: extra.cc,v 1.4 5 1998-05-08 15:29:38 SingularExp $ */4 /* $Id: extra.cc,v 1.46 1998-05-11 13:19:58 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: general interface to internals of Singular ("system" command) … … 312 312 return FALSE; 313 313 } 314 /*==================== neworder =============================*/ 315 // should go below 316 #ifdef HAVE_LIBFAC_P 317 if(strcmp((char*)(h->Data()),"neworder")==0) 318 { 319 if ((h->next!=NULL) &&(h->next->Typ()==IDEAL_CMD)) 320 { 321 res->rtyp=STRING_CMD; 322 res->data=(void *)singclap_neworder((ideal)h->next->Data()); 323 return FALSE; 324 } 325 else 326 WerrorS("ideal expected"); 327 } 328 else 329 #endif 314 330 #ifdef HAVE_EXTENDED_SYSTEM 315 331 // You can put your own system calls here … … 360 376 else 361 377 WerrorS("poly expected"); 362 }363 else364 #endif365 /*==================== neworder =============================*/366 #ifdef HAVE_LIBFAC_P367 if(strcmp((char*)(h->Data()),"neworder")==0)368 {369 if ((h->next!=NULL) &&(h->next->Typ()==IDEAL_CMD))370 {371 res->rtyp=STRING_CMD;372 res->data=(void *)singclap_neworder((ideal)h->next->Data());373 return FALSE;374 }375 else376 WerrorS("ideal expected");377 378 } 378 379 else
Note: See TracChangeset
for help on using the changeset viewer.