Changeset 1f1fb0 in git
- Timestamp:
- Jan 21, 2013, 4:58:03 PM (10 years ago)
- Branches:
- (u'spielwiese', 'f6c3dc58b0df4bd712574325fe76d0626174ad97')
- Children:
- b4ecd22b9bdea4a7363a92025f6b381893dd49e1
- Parents:
- 5b32a17feb4f0be885f1224b99e80004ed814aabe9caeb23e27bc7fab621c6235aab294ec4f32681
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/dmod.lib
re9caeb r1f1fb0 1721 1721 dbprint(ppl-1, @R4); 1722 1722 ideal K4 = imap(@R2,K2); 1723 intvec saveopt=option(get); 1723 1724 option(redSB); 1724 1725 dbprint(ppl,"// -3-2- the final cosmetic std"); … … 1731 1732 ideal LD = K4; 1732 1733 export LD; 1734 option(set,saveopt); 1733 1735 return(@R4); 1734 1736 } -
Singular/LIB/finvar.lib
re9caeb r1f1fb0 6462 6462 int dgb=degBound; 6463 6463 degBound = 0; 6464 intvec saveopt=option(get); 6464 6465 option(redSB); 6465 6466 ideal sP = groebner(ideal(P)); -
Singular/cntrlc.cc
r5b32a1 r1f1fb0 563 563 void init_signals() 564 564 { 565 #ifdef SIGSEGV 565 566 si_set_signal(SIGSEGV,(si_hdl_typ)sigsegv_handler); 567 #endif 568 #ifdef SIGBUS 569 si_set_signal(SIGBUS, (si_hdl_typ)sigsegv_handler); 570 #endif 571 #ifdef SIGFPE 566 572 si_set_signal(SIGFPE, (si_hdl_typ)sigsegv_handler); 573 #endif 574 #ifdef SIGILL 567 575 si_set_signal(SIGILL, (si_hdl_typ)sigsegv_handler); 576 #endif 577 #ifdef SIGIOT 568 578 si_set_signal(SIGIOT, (si_hdl_typ)sigsegv_handler); 579 #endif 569 580 si_set_signal(SIGINT ,(si_hdl_typ)sigint_handler); 570 581 si_set_signal(SIGCHLD, (si_hdl_typ)sig_chld_hdl); -
Singular/ipid.cc
re9caeb r1f1fb0 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 4 5 /* 5 6 * ABSTRACT: identfier handling -
Singular/ipid.h
re9caeb r1f1fb0 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 6 7 /* 7 8 * ABSTRACT: identfier handling -
Singular/iplib.cc
re9caeb r1f1fb0 293 293 return NULL; 294 294 } 295 #ifndef LIBSINGULAR 296 // see below: 297 struct soptionStruct 298 { 299 const char * name; 300 unsigned setval; 301 unsigned resetval; 302 }; 303 extern struct soptionStruct optionStruct[]; 304 extern struct soptionStruct verboseStruct[]; 305 #endif 295 306 296 307 BOOLEAN iiAllStart(procinfov pi, char *p,feBufferTypes t, int l) -
kernel/kutil.cc
re9caeb r1f1fb0 3507 3507 int j = pos; 3508 3508 if ( (!strat->fromT) 3509 && ( 1//(strat->syzComp==0)3510 //||(pGetComp(h)<=strat->syzComp)))3509 && ((strat->syzComp==0) 3510 ||(pGetComp(h)<=strat->syzComp) 3511 3511 )) 3512 3512 { -
libpolys/polys/ext_fields/algext.cc
re9caeb r1f1fb0 414 414 if (aDeg>bDeg) return TRUE; 415 415 if (aDeg<bDeg) return FALSE; 416 return n_Greater(pGetCoeff((poly)a),pGetCoeff((poly)b), cf);416 return n_Greater(pGetCoeff((poly)a),pGetCoeff((poly)b),naCoeffs); 417 417 } 418 418 -
libpolys/polys/ext_fields/transext.cc
re9caeb r1f1fb0 608 608 ntTest(a); 609 609 ntTest(b); 610 number aNumCoeff = NULL; int aNumDeg = 0;611 number bNumCoeff = NULL; int bNumDeg = 0;610 number aNumCoeff = NULL; int aNumDeg = -1; 611 number bNumCoeff = NULL; int bNumDeg = -1; 612 612 if (!IS0(a)) 613 613 { … … 616 616 aNumCoeff = p_GetCoeff(NUM(fa), ntRing); 617 617 } 618 else return !(ntGreaterZero (b,cf)); 618 619 if (!IS0(b)) 619 620 { … … 622 623 bNumCoeff = p_GetCoeff(NUM(fb), ntRing); 623 624 } 625 else return ntGreaterZero(a,cf); 624 626 if (aNumDeg > bNumDeg) return TRUE; 625 627 if (aNumDeg < bNumDeg) return FALSE; -
omalloc/omDefaultConfig.h
r5b32a1 r1f1fb0 89 89 */ 90 90 #ifndef OM_DEFAULT_PAGES_PER_REGION 91 #define OM_DEFAULT_PAGES_PER_REGION 12891 #define OM_DEFAULT_PAGES_PER_REGION 512 92 92 #endif 93 93
Note: See TracChangeset
for help on using the changeset viewer.