Changeset 9c4865b in git
- Timestamp:
- Jan 27, 2010, 1:33:04 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- 9239449fb81b97dbf98619fb5dcba7343d2e8861
- Parents:
- 9008029955f32c6d5ef414a2e5d9bf43a5c892f6
- Location:
- kernel
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/febase.cc
r900802 r9c4865b 47 47 char prompt_char = '>'; /*1 either '>' or '.'*/ 48 48 extern "C" { 49 BITSET test=(BITSET)0; 49 50 BITSET verbose = 1 50 51 | Sy_bit(V_REDEFINE) -
kernel/kutil.cc
r900802 r9c4865b 215 215 216 216 217 BITSET test=(BITSET)0;218 217 int HCord; 219 218 int Kstd1_deg; … … 6643 6642 Print("posInLDependsOnLength=%d, use_buckets=%d\n", 6644 6643 strat->posInLDependsOnLength,strat->use_buckets); 6645 PrintS(showOption());PrintLn(); 6644 PrintS(showOption());PrintLn(); 6645 PrintS("LDeg: "); 6646 if (currRing->pLDeg==pLDeg0) PrintS("pLDeg0"); 6647 else if (currRing->pLDeg==pLDeg0c) PrintS("pLDeg0c"); 6648 else if (currRing->pLDeg==pLDegb) PrintS("pLDegb"); 6649 else if (currRing->pLDeg==pLDeg1) PrintS("pLDeg1"); 6650 else if (currRing->pLDeg==pLDeg1c) PrintS("pLDeg1c"); 6651 else if (currRing->pLDeg==pLDeg1_Deg) PrintS("pLDeg1_Deg"); 6652 else if (currRing->pLDeg==pLDeg1c_Deg) PrintS("pLDeg1c_Deg"); 6653 else if (currRing->pLDeg==pLDeg1_Totaldegree) PrintS("pLDeg1_Totaldegree"); 6654 else if (currRing->pLDeg==pLDeg1c_Totaldegree) PrintS("pLDeg1c_Totaldegree"); 6655 else if (currRing->pLDeg==pLDeg1_WFirstTotalDegree) PrintS("pLDeg1_WFirstTotalDegree"); 6656 else if (currRing->pLDeg==pLDeg1c_WFirstTotalDegree) PrintS("pLDeg1c_WFirstTotalDegree"); 6657 else Print("? (%lx)", (long)currRing->pLDeg); 6658 PrintS(" / "); 6659 if (strat->tailRing->pLDeg==pLDeg0) PrintS("pLDeg0"); 6660 else if (strat->tailRing->pLDeg==pLDeg0c) PrintS("pLDeg0c"); 6661 else if (strat->tailRing->pLDeg==pLDegb) PrintS("pLDegb"); 6662 else if (strat->tailRing->pLDeg==pLDeg1) PrintS("pLDeg1"); 6663 else if (strat->tailRing->pLDeg==pLDeg1c) PrintS("pLDeg1c"); 6664 else if (strat->tailRing->pLDeg==pLDeg1_Deg) PrintS("pLDeg1_Deg"); 6665 else if (strat->tailRing->pLDeg==pLDeg1c_Deg) PrintS("pLDeg1c_Deg"); 6666 else if (strat->tailRing->pLDeg==pLDeg1_Totaldegree) PrintS("pLDeg1_Totaldegree"); 6667 else if (strat->tailRing->pLDeg==pLDeg1c_Totaldegree) PrintS("pLDeg1c_Totaldegree"); 6668 else if (strat->tailRing->pLDeg==pLDeg1_WFirstTotalDegree) PrintS("pLDeg1_WFirstTotalDegree"); 6669 else if (strat->tailRing->pLDeg==pLDeg1c_WFirstTotalDegree) PrintS("pLDeg1c_WFirstTotalDegree"); 6670 else Print("? (%lx)", (long)strat->tailRing->pLDeg); 6671 Print(" syzring:%d, syzComp(strat):%d syzComb(ring)\n",rIsSyzIndexRing(currRing),strat->syzComp,rGetCurrSyzLimit()); 6672 6646 6673 } 6647 6674 -
kernel/misc.cc
r900802 r9c4865b 48 48 49 49 omBin char_ptr_bin = omGetSpecBin(sizeof(char_ptr)); 50 omBin smprec_bin = omGetSpecBin(sizeof(smprec));51 omBin sip_sring_bin = omGetSpecBin(sizeof(sip_sring));52 50 53 51 /*0 implementation*/ -
kernel/ring.cc
r900802 r9c4865b 42 42 43 43 #define BITS_PER_LONG 8*SIZEOF_LONG 44 45 omBin sip_sring_bin = omGetSpecBin(sizeof(sip_sring)); 44 46 45 47 static const char * const ringorder_name[] = -
kernel/ring.h
r900802 r9c4865b 460 460 void rDelete(ring r); 461 461 462 #endif 462 extern struct omBin_s* sip_sring_bin; 463 #endif -
kernel/sparsmat.cc
r900802 r9c4865b 52 52 static BOOLEAN smHaveDenom(poly); 53 53 static number smCleardenom(ideal); 54 55 struct omBin_s* smprec_bin = omGetSpecBin(sizeof(smprec)); 54 56 55 57 static poly pp_Mult_Coeff_mm_DivSelect_MultDiv(poly p, int &lp, poly m, -
kernel/structs.h
r900802 r9c4865b 683 683 684 684 /*the general set of std-options --> kutil.cc */ 685 extern BITSET test;686 685 /*the general set of verbose-options --> febase.cc */ 687 686 #ifdef __cplusplus 687 extern "C" BITSET test; 688 688 extern "C" BITSET verbose; 689 689 #else 690 extern BITSET test; 690 691 extern BITSET verbose; 691 #endif692 /*debugging the bison grammar --> grammar.cc*/693 #ifdef YYDEBUG694 #if YYDEBUG695 extern int yydebug;696 #endif697 692 #endif 698 693 … … 818 813 819 814 extern struct omBin_s* char_ptr_bin; 820 extern struct omBin_s* smprec_bin;821 extern struct omBin_s* sip_sring_bin;822 815 extern struct omBin_s* sleftv_bin; 823 816
Note: See TracChangeset
for help on using the changeset viewer.