Changeset 86aa6a1 in git for kernel/tgb_internal.h
- Timestamp:
- Jun 27, 2008, 2:10:58 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- bb7a4d8ceb25776da1ef2e024e02fd76ff2928e4
- Parents:
- 3b7e975b373f57a1e6cb135cc3765f937f180e12
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/tgb_internal.h
r3b7e97 r86aa6a1 5 5 * Computer Algebra System SINGULAR * 6 6 ****************************************/ 7 /* $Id: tgb_internal.h,v 1.7 1 2008-06-25 08:49:22bricken Exp $ */7 /* $Id: tgb_internal.h,v 1.72 2008-06-27 12:10:58 bricken Exp $ */ 8 8 /* 9 9 * ABSTRACT: tgb internal .h file … … 181 181 { 182 182 public: 183 slimgb_alg(ideal I, int syz_comp,BOOLEAN F4 );183 slimgb_alg(ideal I, int syz_comp,BOOLEAN F4,int deg_pos); 184 184 void introduceDelayedPairs(poly* pa,int s); 185 185 virtual ~slimgb_alg(); … … 241 241 int lastDpBlockStart; 242 242 int lastCleanedDeg; 243 int deg_pos; 243 244 BOOLEAN use_noro; 244 245 BOOLEAN use_noro_last_block; … … 254 255 #endif 255 256 unsigned long pTotaldegree(poly p){ 256 return ::pTotaldegree(p,this->r); 257 pTest(p); 258 //assume(pDeg(p,r)==::pTotaldegree(p,r)); 259 assume(::pTotaldegree(p,r)==p->exp[deg_pos]); 260 return p->exp[deg_pos]; 261 //return ::pTotaldegree(p,this->r); 257 262 } 258 263 int pTotaldegree_full(poly p){ … … 301 306 static void do_this_spoly_stuff(int i,int j,slimgb_alg* c); 302 307 //ideal t_rep_gb(ring r,ideal arg_I); 308 ideal do_t_rep_gb(ring r,ideal arg_I, int syz_comp, BOOLEAN F4_mode,int deg_pos); 303 309 static BOOLEAN has_t_rep(const int & arg_i, const int & arg_j, slimgb_alg* state); 304 310 static int* make_connections(int from, poly bound, slimgb_alg* c);
Note: See TracChangeset
for help on using the changeset viewer.