Changeset 5c6cea in git
- Timestamp:
- Aug 14, 2013, 5:42:25 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- dfa84937f0c3f7da5b22bc6282fb9c46eccad506
- Parents:
- ff6cd3f6cb4fc95b698a95fed6f127fb7c3074d2
- git-author:
- Martin Lee <martinlee84@web.de>2013-08-14 17:42:25+02:00
- git-committer:
- Martin Lee <martinlee84@web.de>2013-08-30 13:48:32+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facAbsBiFact.cc
rff6cd3 r5c6cea 227 227 { 228 228 CanonicalForm F= bCommonDen (G)*G; 229 bool isRat= isOn (SW_RATIONAL); 229 230 Off (SW_RATIONAL); 230 231 F /= icontent (F); … … 248 249 TIMING_END_AND_PRINT (fac_evalpoint, "time to find eval point: "); 249 250 251 //after here isOn (SW_RATIONAL)==false 250 252 setCharacteristic (p); 251 253 Fp=F.mapinto(); … … 259 261 if (absIrredTest (Fp)) 260 262 { 263 if (isRat) 264 On (SW_RATIONAL); 261 265 setCharacteristic(0); 262 266 return CFAFList (CFAFactor (G, 1, 1)); … … 267 271 if (modularIrredTestWithShift (F)) 268 272 { 273 if (isRat) 274 On (SW_RATIONAL); 269 275 return CFAFList (CFAFactor (G, 1, 1)); 270 276 } … … 691 697 } 692 698 699 if (isRat) 700 On (SW_RATIONAL); 701 else 702 Off (SW_RATIONAL); 703 693 704 return result; 694 705 }
Note: See TracChangeset
for help on using the changeset viewer.