Changeset 0bcd38 in git
- Timestamp:
- Dec 21, 2018, 3:33:59 PM (5 years ago)
- Branches:
- (u'spielwiese', '873fc1222e995d7cb33f79d8f1792ce418c8c72c')
- Children:
- 4e5e15dc5671e52c4a3be4daea03f3be5b10823d
- Parents:
- c2b8eb95415c5c628f5f60b9889784f5026cb4ac
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
rc2b8eb r0bcd38 4242 4242 int deg = (int)(long)v->Data(); 4243 4243 if (deg > currRing->N/currRing->isLPring) { 4244 WerrorS("deg of letterplace ringto small");4244 WerrorS("degree bound of Letterplace ring is to small"); 4245 4245 return TRUE; 4246 4246 } -
libpolys/polys/shiftop.cc
rc2b8eb r0bcd38 370 370 if (p_mLastVblock(m, e, ri) + sh > ri->N/lV) 371 371 { 372 Werror(" letterplace degree boundis %d, but at least %d is needed for this shift", ri->N/lV, p_mLastVblock(m, e, ri) + sh);372 Werror("degree bound of Letterplace ring is %d, but at least %d is needed for this shift", ri->N/lV, p_mLastVblock(m, e, ri) + sh); 373 373 } 374 374 for (int i = ri->N - sh*lV; i > 0; i--) … … 513 513 if (last > ri->N) 514 514 { 515 Werror(" letterplace degree boundis %d, but at least %d is needed for this multiplication", ri->N/ri->isLPring, last/ri->isLPring);515 Werror("degree bound of Letterplace ring is %d, but at least %d is needed for this multiplication", ri->N/ri->isLPring, last/ri->isLPring); 516 516 last = ri->N; 517 517 } … … 540 540 if (last > ri->N) 541 541 { 542 Werror(" letterplace degree boundis %d, but at least %d is needed for this multiplication", ri->N/ri->isLPring, last/ri->isLPring);542 Werror("degree bound of Letterplace ring is %d, but at least %d is needed for this multiplication", ri->N/ri->isLPring, last/ri->isLPring); 543 543 last = ri->N; 544 544 } … … 824 824 if(has_order_a) 825 825 { 826 WerrorS("ordering (a(..),lp/rp not implemented for L P-rings");826 WerrorS("ordering (a(..),lp/rp not implemented for Letterplace rings"); 827 827 return NULL; 828 828 } … … 860 860 else 861 861 { // should never happen: 862 WerrorS("ordering not implemented for L P-rings");862 WerrorS("ordering not implemented for Letterplace rings"); 863 863 return NULL; 864 864 } … … 867 867 break; 868 868 } 869 default: WerrorS("ordering not implemented for L P-rings");869 default: WerrorS("ordering not implemented for Letterplace rings"); 870 870 return NULL; 871 871 }
Note: See TracChangeset
for help on using the changeset viewer.