Changeset 14b690e in git
- Timestamp:
- Mar 13, 2014, 5:07:54 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- e102d4ec06976b47d6c651423092633b88f744b2
- Parents:
- b9cb8c8a040ef87acfc952d2d3984a3574c8d888
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_factor.cc
rb9cb8c r14b690e 503 503 if (CFFactory::gettype() == GaloisFieldDomain) 504 504 factors= GFSqrfFactorize (f); 505 else if (hasFirstAlgVar (f, alpha))506 factors= FqSqrfFactorize (f, alpha);507 505 else 508 506 factors= FpSqrfFactorize (f); … … 515 513 if (CFFactory::gettype() == GaloisFieldDomain) 516 514 F= GFFactorize (f); 517 else if (hasFirstAlgVar (f, alpha))518 F= FqFactorize (f, alpha);519 515 else 520 516 F= FpFactorize (f); … … 625 621 Variable beta; 626 622 if (hasFirstAlgVar(f, beta)) 627 ASSERT ( hasFirstAlgVar (f, beta) != alpha, "f has an algebraic variable that \628 does not coincide with alpha");623 ASSERT (beta == alpha, "f has an algebraic variable that \ 624 does not coincide with alpha"); 629 625 #endif 630 626 int ch=getCharacteristic();
Note: See TracChangeset
for help on using the changeset viewer.