Changeset d92e66 in git for factory/facFqFactorize.cc
- Timestamp:
- Oct 22, 2012, 12:23:16 PM (11 years ago)
- Branches:
- (u'spielwiese', 'a7324b6e0b44a1a8ed3fa4d9ca3e2ff210ddd52c')
- Children:
- e5fdcc46cc43bdef4751841d5c4ddcda8e6cde55
- Parents:
- 7964658e19c1f9b2949f81ae9f46b6395fee757c
- git-author:
- Martin Lee <martinlee84@web.de>2012-10-22 12:23:16+02:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-10-24 12:33:11+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facFqFactorize.cc
r7964658 rd92e66 905 905 { 906 906 int i= A.level(); 907 contentAi.append (myContent (A, i)); 908 contentAi.append (myContent (A, i - 1)); 907 CanonicalForm buf= A; 908 contentAi.append (content (buf, i)); 909 buf /= contentAi.getLast(); 910 contentAi.append (content (buf, i - 1)); 909 911 CanonicalForm result= lcm (contentAi.getFirst(), contentAi.getLast()); 910 912 for (i= i - 2; i > 0; i--) 911 913 { 912 contentAi.append (content (A, i)); 914 contentAi.append (content (buf, i)); 915 buf /= contentAi.getLast(); 913 916 result= lcm (result, contentAi.getLast()); 914 917 }
Note: See TracChangeset
for help on using the changeset viewer.