Changeset 6e3023a in git for kernel/kspoly.cc
- Timestamp:
- Dec 18, 2013, 2:57:02 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 3a9e92a717b194d4a06a429b452258c0269579076235be46a7d664256bb99b1bd6340cd8ad800e2c
- Parents:
- 74c446222122656dc7859919b51f3806768e7fd331b00db0e867fa73d4415e16969423de4337f6f7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kspoly.cc
r74c4462 r6e3023a 201 201 * TODO: 202 202 * -------------------------------------------- 203 * if strat-> incremental203 * if strat->sbaOrder == 1 204 204 * Since we are subdividing lower index and 205 205 * current index reductions it is enough to … … 207 207 * for a check. This should speed-up checking 208 208 * a lot! 209 * if !strat-> incremental209 * if !strat->sbaOrder == 0 210 210 * We are not subdividing lower and current index 211 211 * due to the fact that we are using the induced … … 223 223 if (!PW->is_sigsafe) 224 224 { 225 poly f1 = p_Copy(PR->GetLmCurrRing(),currRing); 225 poly ftmp; 226 ring rtmp; 227 PR->SetLmCurrRing(); 228 poly f1 = pCopy(PR->GetLmCurrRing()); 229 //PR->GetLm(ftmp,rtmp); 230 //poly f1 = k_LmInit_tailRing_2_currRing(ftmp,rtmp); 226 231 poly f2 = PW->GetLmCurrRing(); 227 232 poly sigMult = pCopy(PW->sig); // copy signature of reducer … … 235 240 printf("--------------\n"); 236 241 #endif 237 sigMult = p p_Mult_qq(f1,sigMult,currRing);242 sigMult = p_Mult_q(f1,sigMult,currRing); 238 243 //#if 1 239 244 #ifdef DEBUGF5 … … 253 258 254 259 #endif 255 pDelete(&f1);260 //pDelete(&f1); 256 261 pDelete(&sigMult); 257 262 // go on with the computations only if the signature of p2 is greater than the … … 262 267 return 3; 263 268 } 264 PW->is_sigsafe = TRUE;269 //PW->is_sigsafe = TRUE; 265 270 } 266 271 PR->is_redundant = FALSE;
Note: See TracChangeset
for help on using the changeset viewer.