Changeset eb72ba1 in git
- Timestamp:
- May 5, 2011, 7:20:57 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- 61e9142166e8873869d9cf125c3809be22c5ae88
- Parents:
- 750e704356a16e0d46bd540f5fe07a831a40cded
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Minor.cc
r750e70 reb72ba1 825 825 } 826 826 827 int MinorValue:: _RankingStrategy = -1;827 int MinorValue::g_rankingStrategy = -1; 828 828 829 829 int MinorValue::getWeight () const … … 898 898 void MinorValue::SetRankingStrategy (const int rankingStrategy) 899 899 { 900 _RankingStrategy = rankingStrategy;901 if ( _RankingStrategy == 6)900 g_rankingStrategy = rankingStrategy; 901 if (g_rankingStrategy == 6) 902 902 { 903 903 /* initialize the random generator with system time */ … … 908 908 int MinorValue::GetRankingStrategy() 909 909 { 910 return _RankingStrategy;910 return g_rankingStrategy; 911 911 } 912 912 -
Singular/Minor.h
r750e70 reb72ba1 533 533 * This member can be set using MinorValue::SetRankingStrategy (const int). 534 534 */ 535 static int _RankingStrategy;536 537 /** 538 * Accessor for the static private field _RankingStrategy.535 static int g_rankingStrategy; 536 537 /** 538 * Accessor for the static private field g_rankingStrategy. 539 539 */ 540 540 static int GetRankingStrategy(); -
Singular/janet.cc
r750e70 reb72ba1 987 987 } 988 988 989 int ComputeBasis(jList *_ T,jList *_Q)989 int ComputeBasis(jList *_lT,jList *_lQ) 990 990 { 991 991 int gb_l,i,ret_value=1; 992 992 993 T=_ T; Q=_Q;993 T=_lT; Q=_lQ; 994 994 995 995 // Debug(); -
kernel/f5data.h
r750e70 reb72ba1 32 32 int index; //index of signature 33 33 poly polynomial; //standard polynomial data 34 RuleOld* _ RuleOld;34 RuleOld* _ruleOld; 35 35 bool del; 36 36 public: … … 78 78 79 79 void LPolyOld::setRuleOld(RuleOld* r) { 80 _ RuleOld = r;80 _ruleOld = r; 81 81 } 82 82 … … 98 98 99 99 RuleOld* LPolyOld::getRuleOld() { 100 return _ RuleOld;100 return _ruleOld; 101 101 } 102 102 -
kernel/mpr_base.cc
r750e70 reb72ba1 284 284 * The Alg computes conv(Qi[]+shift[]). 285 285 */ 286 pointSet * getInnerPoints( pointSet **_ Qi, mprfloat _shift[] );286 pointSet * getInnerPoints( pointSet **_q_i, mprfloat _shift[] ); 287 287 288 288 private: … … 889 889 890 890 //-> mayanPyramidAlg::* 891 pointSet * mayanPyramidAlg::getInnerPoints( pointSet **_ Qi, mprfloat _shift[] )891 pointSet * mayanPyramidAlg::getInnerPoints( pointSet **_q_i, mprfloat _shift[] ) 892 892 { 893 893 int i; 894 894 895 Qi= _ Qi;895 Qi= _q_i; 896 896 shift= _shift; 897 897 -
kernel/p_polys.cc
r750e70 reb72ba1 28 28 ***************************************************************/ 29 29 // this is special for the syz stuff 30 static int* _ Components = NULL;31 static long* _ ShiftedComponents= NULL;32 static int _ ExternalComponents= 0;30 static int* _components = NULL; 31 static long* _componentsShifted = NULL; 32 static int _componentsExternal = 0; 33 33 34 34 BOOLEAN pSetm_error=0; … … 153 153 int c=p_GetComp(p,r); 154 154 long sc = c; 155 int* Components = (_ ExternalComponents ? _Components :155 int* Components = (_componentsExternal ? _components : 156 156 o->data.syzcomp.Components); 157 long* ShiftedComponents = (_ ExternalComponents ? _ShiftedComponents:157 long* ShiftedComponents = (_componentsExternal ? _componentsShifted: 158 158 o->data.syzcomp.ShiftedComponents); 159 159 if (ShiftedComponents != NULL) … … 367 367 void p_Setm_Syz(poly p, ring r, int* Components, long* ShiftedComponents) 368 368 { 369 _ Components = Components;370 _ ShiftedComponents= ShiftedComponents;371 _ ExternalComponents= 1;369 _components = Components; 370 _componentsShifted = ShiftedComponents; 371 _componentsExternal = 1; 372 372 p_Setm_General(p, r); 373 _ ExternalComponents= 0;373 _componentsExternal = 0; 374 374 } 375 375
Note: See TracChangeset
for help on using the changeset viewer.