Changeset 0bcd38 in git


Ignore:
Timestamp:
Dec 21, 2018, 3:33:59 PM (5 years ago)
Author:
Karim Abou Zeid <karim23697@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'd08f5f0bb3329b8ca19f23b74cb1473686415c3a')
Children:
4e5e15dc5671e52c4a3be4daea03f3be5b10823d
Parents:
c2b8eb95415c5c628f5f60b9889784f5026cb4ac
Message:
Update error messages
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    rc2b8eb r0bcd38  
    42424242    int deg = (int)(long)v->Data();
    42434243    if (deg > currRing->N/currRing->isLPring) {
    4244       WerrorS("deg of letterplace ring to small");
     4244      WerrorS("degree bound of Letterplace ring is to small");
    42454245      return TRUE;
    42464246    }
  • libpolys/polys/shiftop.cc

    rc2b8eb r0bcd38  
    370370  if (p_mLastVblock(m, e, ri) + sh > ri->N/lV)
    371371  {
    372     Werror("letterplace degree bound is %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);
    373373  }
    374374  for (int i = ri->N - sh*lV; i > 0; i--)
     
    513513  if (last > ri->N)
    514514  {
    515     Werror("letterplace degree bound is %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);
    516516    last = ri->N;
    517517  }
     
    540540  if (last > ri->N)
    541541  {
    542     Werror("letterplace degree bound is %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);
    543543    last = ri->N;
    544544  }
     
    824824      if(has_order_a)
    825825      {
    826         WerrorS("ordering (a(..),lp/rp not implemented for LP-rings");
     826        WerrorS("ordering (a(..),lp/rp not implemented for Letterplace rings");
    827827        return NULL;
    828828      }
     
    860860      else
    861861      { // should never happen:
    862         WerrorS("ordering not implemented for LP-rings");
     862        WerrorS("ordering not implemented for Letterplace rings");
    863863        return NULL;
    864864      }
     
    867867      break;
    868868    }
    869     default: WerrorS("ordering not implemented for LP-rings");
     869    default: WerrorS("ordering not implemented for Letterplace rings");
    870870      return NULL;
    871871  }
Note: See TracChangeset for help on using the changeset viewer.