Changeset f09105 in git
- Timestamp:
- Jun 6, 2011, 4:45:55 PM (12 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- a5d5fca9f3b322761be00e3eaaf1b6641d54f518
- Parents:
- c227a2fe328d29d1cfbd56bc8d8824aed8aa2d38
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facFqFactorize.h
rc227a2f rf09105 46 46 ) 47 47 { 48 if (getNumVars (F) == 2) 49 return FpBiSqrfFactorize (F); 48 50 ExtensionInfo info= ExtensionInfo (false); 49 51 CFList result= multiFactorize (F, info); … … 62 64 ) 63 65 { 66 if (getNumVars (F) == 2) 67 return FqBiSqrfFactorize (F, alpha); 64 68 ExtensionInfo info= ExtensionInfo (alpha, false); 65 69 CFList result= multiFactorize (F, info); … … 79 83 ASSERT (CFFactory::gettype() == GaloisFieldDomain, 80 84 "GF as base field expected"); 85 if (getNumVars (F) == 2) 86 return GFBiSqrfFactorize (F); 81 87 ExtensionInfo info= ExtensionInfo (getGFDegree(), gf_name, false); 82 88 CFList result= multiFactorize (F, info); … … 94 100 ) 95 101 { 102 if (getNumVars (F) == 2) 103 return FpBiFactorize (F); 96 104 ExtensionInfo info= ExtensionInfo (false); 97 105 Variable a= Variable (1); … … 139 147 ) 140 148 { 149 if (getNumVars (F) == 2) 150 return FqBiFactorize (F, alpha); 141 151 ExtensionInfo info= ExtensionInfo (alpha, false); 142 152 CanonicalForm LcF= Lc (F); … … 185 195 ASSERT (CFFactory::gettype() == GaloisFieldDomain, 186 196 "GF as base field expected"); 197 if (getNumVars (F) == 2) 198 return GFBiFactorize (F); 187 199 Variable a= Variable (1); 188 200 ExtensionInfo info= ExtensionInfo (getGFDegree(), gf_name, false);
Note: See TracChangeset
for help on using the changeset viewer.