Changeset b78a13 in git
- Timestamp:
- Mar 5, 2012, 9:45:49 PM (11 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- c729f26220e3c5188b3151f01a80a302441e8dfd
- Parents:
- 42af50525c9435e916c3d1356060b7605d90a28e
- git-author:
- Martin Lee <martinlee84@web.de>2012-03-05 21:45:49+01:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-04-04 14:42:26+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facMul.cc
r42af505 rb78a13 62 62 int degfSubK; 63 63 int repLength, j; 64 CanonicalForm coeff ;64 CanonicalForm coeff, ff; 65 65 fmpz* tmp; 66 66 while (degf >= k) … … 78 78 if (!fmpz_is_zero (tmp)) 79 79 { 80 CanonicalForm ff= convertFmpz2CF (tmp)/den;81 coeff += ff*power (alpha, j); 80 ff= convertFmpz2CF (tmp); 81 coeff += ff*power (alpha, j); //TODO faster reduction mod alpha 82 82 } 83 83 } … … 86 86 k= d*i; 87 87 } 88 result /= den; 88 89 return result; 89 90 }
Note: See TracChangeset
for help on using the changeset viewer.