Changeset 1b420fd in git
- Timestamp:
- Aug 3, 2011, 7:29:37 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- f218a7daf5f60792a940256fb8358b13d4d85ef3
- Parents:
- 36dd348c07984f48c3bf7582c5f05be7aa4ea52e
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-03 19:29:37+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:14:21+01:00
- Location:
- kernel
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/syz.cc
r36dd34 r1b420fd 424 424 if (syz_ring != origR) 425 425 { 426 res[0] = idrCopyR_NoSort(arg, origR); 426 rChangeCurrRing(syz_ring); 427 res[0] = idrCopyR_NoSort(arg, origR, syz_ring); 427 428 } 428 429 else … … 605 606 if (origR != syz_ring) 606 607 { 607 rChangeCurrRing(origR); 608 rChangeCurrRing(origR); // should not be needed now? 608 609 for (i=0; i<=syzIndex; i++) 609 610 { 610 res[i] = idrMoveR_NoSort(res[i], syz_ring );611 res[i] = idrMoveR_NoSort(res[i], syz_ring, origR); 611 612 } 612 613 rKill(syz_ring); -
kernel/syz0.cc
r36dd34 r1b420fd 918 918 for (i=0; i<IDELEMS(res[1]); i++) 919 919 { 920 res[1]->m[i] = prMoveR( res[1]->m[i], origR );920 res[1]->m[i] = prMoveR( res[1]->m[i], origR, syRing); 921 921 } 922 922 } … … 931 931 for (i=0; i<IDELEMS(res[0]); i++) 932 932 { 933 res[0]->m[i] = prMoveR( res[0]->m[i], origR );933 res[0]->m[i] = prMoveR( res[0]->m[i], origR, syRing); 934 934 } 935 935 } … … 970 970 if (res[syzIndex]->m[i]) 971 971 { 972 res[syzIndex]->m[i] = prMoveR( res[syzIndex]->m[i], syRing );972 res[syzIndex]->m[i] = prMoveR( res[syzIndex]->m[i], syRing, origR); 973 973 } 974 974 } -
kernel/syz1.cc
r36dd34 r1b420fd 1687 1687 { 1688 1688 if (origR!=NULL) 1689 tq = prHeadR(p,origR );1689 tq = prHeadR(p,origR, currRing); 1690 1690 else 1691 1691 tq = pHead(p); … … 1700 1700 pIter(p); 1701 1701 pNext(pp)=NULL; 1702 tq = prMoveR(pp, origR );1702 tq = prMoveR(pp, origR, currRing); 1703 1703 } 1704 1704 else … … 1734 1734 { 1735 1735 if (toCopy) 1736 fullres[i-1]->m[j] = prCopyR(res[i]->m[j], origR );1736 fullres[i-1]->m[j] = prCopyR(res[i]->m[j], origR, currRing); 1737 1737 else 1738 1738 { 1739 fullres[i-1]->m[j] = prMoveR(res[i]->m[j], origR );1739 fullres[i-1]->m[j] = prMoveR(res[i]->m[j], origR, currRing); 1740 1740 res[i]->m[j] = NULL; 1741 1741 } … … 2485 2485 for (i=0;i<IDELEMS(arg);i++) 2486 2486 { 2487 temp->m[i] = prCopyR( arg->m[i], origR );2487 temp->m[i] = prCopyR( arg->m[i], origR, syzstr->syRing); 2488 2488 if (temp->m[i]!=NULL) 2489 2489 { … … 2627 2627 for (i=0;i<IDELEMS(arg);i++) 2628 2628 { 2629 temp->m[i] = prCopyR( arg->m[i], origR );2629 temp->m[i] = prCopyR( arg->m[i], origR, currRing); 2630 2630 if (temp->m[i]!=NULL) 2631 2631 { -
kernel/syz2.cc
r36dd34 r1b420fd 1002 1002 { 1003 1003 if (origR != syzstr->syRing) 1004 temp->m[i] = prCopyR( arg->m[i], origR );1004 temp->m[i] = prCopyR( arg->m[i], origR, syzstr->syRing); 1005 1005 else 1006 1006 temp->m[i] = pCopy( arg->m[i]); -
kernel/syz3.cc
r36dd34 r1b420fd 1771 1771 syzstr->regularity = -1; 1772 1772 if (origR!=syzstr->syRing) 1773 temp = idrCopyR(arg, origR);1773 temp = idrCopyR(arg, origR, syzstr->syRing); 1774 1774 else 1775 1775 temp = idCopy(arg); … … 2016 2016 while ((index<=*length) && (syzstr->fullres[index]!=NULL)) 2017 2017 { 2018 syzstr->fullres[index] = idrMoveR(syzstr->fullres[index],syzstr->syRing );2018 syzstr->fullres[index] = idrMoveR(syzstr->fullres[index],syzstr->syRing, origR); 2019 2019 index++; 2020 2020 }
Note: See TracChangeset
for help on using the changeset viewer.