Changeset 9dd25c in git
- Timestamp:
- Feb 19, 2021, 5:13:29 PM (2 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 3b212ab03450b46ee5eef6ea6b9d9d5a91b246b1
- Parents:
- 6993036b12d3795242f9e55fd0dad291a8bfe1e5
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/cntrlc.cc
r6993036 r9dd25c 542 542 #endif 543 543 #endif 544 // factory error handling: -----------------------------------------------545 factoryError=WerrorS;546 544 547 545 // signal handler ------------------------------------------------------- -
Singular/extra.cc
r6993036 r9dd25c 3269 3269 Print("EZGCD_P:%d (use EZGCD_P for gcd of polynomials in char p)\n",isOn(SW_USE_EZGCD_P)); 3270 3270 Print("CRGCD:%d (use chinese Remainder for gcd of polynomials in char 0)\n",isOn(SW_USE_CHINREM_GCD)); 3271 #ifndef __CYGWIN__ 3271 3272 Print("homog:%d (use homog. test for factorization of polynomials)\n",singular_homog_flag); 3273 #endif 3272 3274 return FALSE; 3273 3275 } … … 3285 3287 if (strcmp(s,"EZGCD_P")==0) { if (d) On(SW_USE_EZGCD_P); else Off(SW_USE_EZGCD_P); } else 3286 3288 if (strcmp(s,"CRGCD")==0) { if (d) On(SW_USE_CHINREM_GCD); else Off(SW_USE_CHINREM_GCD); } else 3289 #ifndef __CYGWIN__ 3287 3290 if (strcmp(s,"homog")==0) { if (d) singular_homog_flag=1; else singular_homog_flag=0; } else 3291 #endif 3288 3292 return TRUE; 3289 3293 return FALSE; -
Singular/misc_ip.cc
r6993036 r9dd25c 1478 1478 } 1479 1479 // interpreter error handling 1480 #ifndef __CYGWIN__ 1480 1481 factoryError=callWerrorS; // to honour later changes of variable WerrorS 1482 #endif 1481 1483 errorreported = 0; 1482 1484 }
Note: See TracChangeset
for help on using the changeset viewer.