Changeset c723d80 in git
- Timestamp:
- Apr 11, 2012, 3:46:47 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 16a0dff5411888a4f70e800b97597f593dcdfb82
- Parents:
- a034968a1bff5f6e4e9ad126551a2e9a377d9f60
- git-author:
- Martin Lee <martinlee84@web.de>2012-04-11 15:46:47+02:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-05-07 14:11:30+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_gcd_smallp.cc
ra03496 rc723d80 777 777 //maybe it's better to test if ppH is an element of F(\alpha) before 778 778 //mapping down 779 DEBOUTLN (cerr, "ppH before mapDown= " << ppH);780 ppH= mapDown (ppH, prim_elem, im_prim_elem, alpha, u, v);781 ppH /= Lc(ppH);782 DEBOUTLN (cerr, "ppH after mapDown= " << ppH);783 if (fdivides (ppH, A) && fdivides (ppH, B))784 {779 if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 780 { 781 DEBOUTLN (cerr, "ppH before mapDown= " << ppH); 782 ppH= mapDown (ppH, prim_elem, im_prim_elem, alpha, u, v); 783 ppH /= Lc(ppH); 784 DEBOUTLN (cerr, "ppH after mapDown= " << ppH); 785 785 if (substitute > 1) 786 786 { … … 791 791 } 792 792 } 793 else if (fdivides (ppH, A) && fdivides (ppH,B))793 else if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 794 794 { 795 795 if (substitute > 1) … … 1066 1066 if (inextension) 1067 1067 { 1068 if (fdivides(ppH, GFMapUp(A, k)) && fdivides(ppH, GFMapUp(B,k)))1068 if (fdivides(ppH, ppA) && fdivides(ppH, ppB)) 1069 1069 { 1070 1070 DEBOUTLN (cerr, "ppH before mapDown= " << ppH); … … 1082 1082 else 1083 1083 { 1084 if (fdivides (ppH, A) && fdivides (ppH,B))1084 if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 1085 1085 { 1086 1086 if (substitute > 1) … … 1421 1421 ppH /= Lc (ppH); 1422 1422 DEBOUTLN (cerr, "ppH= " << ppH); 1423 if (fdivides (ppH, A) && fdivides (ppH,B))1423 if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 1424 1424 { 1425 1425 if (substitute > 1) … … 3060 3060 //maybe it's better to test if ppH is an element of F(\alpha) before 3061 3061 //mapping down 3062 DEBOUTLN (cerr, "ppH before mapDown= " << ppH);3063 ppH= mapDown (ppH, prim_elem, im_prim_elem, alpha, u, v);3064 ppH /= Lc(ppH);3065 DEBOUTLN (cerr, "ppH after mapDown= " << ppH);3066 if (fdivides (ppH, A) && fdivides (ppH, B))3067 {3062 if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 3063 { 3064 DEBOUTLN (cerr, "ppH before mapDown= " << ppH); 3065 ppH= mapDown (ppH, prim_elem, im_prim_elem, alpha, u, v); 3066 ppH /= Lc(ppH); 3067 DEBOUTLN (cerr, "ppH after mapDown= " << ppH); 3068 3068 if (substitute > 1) 3069 3069 { … … 3074 3074 } 3075 3075 } 3076 else if (fdivides (ppH, A) && fdivides (ppH,B))3076 else if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 3077 3077 { 3078 3078 if (substitute > 1) … … 3250 3250 //maybe it's better to test if ppH is an element of F(\alpha) before 3251 3251 //mapping down 3252 DEBOUTLN (cerr, "ppH before mapDown= " << ppH); 3253 ppH= mapDown (ppH, prim_elem, im_prim_elem, alpha, u, v); 3254 ppH /= Lc(ppH); 3255 DEBOUTLN (cerr, "ppH after mapDown= " << ppH); 3256 if (fdivides (ppH, A) && fdivides (ppH, B)) 3252 if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 3257 3253 { 3254 DEBOUTLN (cerr, "ppH before mapDown= " << ppH); 3255 ppH= mapDown (ppH, prim_elem, im_prim_elem, alpha, u, v); 3256 ppH /= Lc(ppH); 3257 DEBOUTLN (cerr, "ppH after mapDown= " << ppH); 3258 3258 if (substitute > 1) 3259 3259 { … … 3264 3264 } 3265 3265 } 3266 else if (fdivides (ppH, A) && fdivides (ppH,B))3266 else if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 3267 3267 { 3268 3268 if (substitute > 1) … … 3561 3561 DEBOUTLN (cerr, "ppH= " << ppH); 3562 3562 3563 if (fdivides (ppH, A) && fdivides (ppH,B))3563 if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 3564 3564 { 3565 3565 if (substitute > 1) … … 3786 3786 ppH /= Lc (ppH); 3787 3787 DEBOUTLN (cerr, "ppH= " << ppH); 3788 if (fdivides (ppH, A) && fdivides (ppH,B))3788 if (fdivides (ppH, ppA) && fdivides (ppH, ppB)) 3789 3789 { 3790 3790 if (substitute > 1)
Note: See TracChangeset
for help on using the changeset viewer.