Ignore:
Timestamp:
Jul 27, 2016, 5:32:43 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
f9b0bddbfb9793b47a94a5d2aace6da9918e3c70
Parents:
e642218a429036f2f457d8045880dc747c8200a7
Message:
fix: Werror -> WerrorS if possible
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/nc/old.gring.cc

    re64221 r7b9b8e5  
    14651465  {
    14661466#ifdef PDEBUG
    1467     Werror("gnc_ReduceSpolyNew: different non-zero components!");
     1467    WerrorS("gnc_ReduceSpolyNew: different non-zero components!");
    14681468#endif
    14691469    return(NULL);
     
    16331633  {
    16341634#ifdef PDEBUG
    1635     Werror("gnc_CreateSpolyNew: different non-zero components!");
     1635    WerrorS("gnc_CreateSpolyNew: different non-zero components!");
    16361636    assume(0);
    16371637#endif
     
    17431743       p_Write(m2, r);
    17441744
    1745        Werror("ERROR in nc_CreateSpoly: result of multiplication is Zero!\n");
     1745       WerrorS("ERROR in nc_CreateSpoly: result of multiplication is Zero!\n");
    17461746#endif
    17471747       return(NULL);
     
    19501950  {
    19511951#ifdef PDEBUG
    1952     Werror("nc_CreateShortSpoly: wrong module components!"); // !!!!
     1952    WerrorS("nc_CreateShortSpoly: wrong module components!"); // !!!!
    19531953#endif
    19541954    return(NULL);
     
    20192019
    20202020#ifdef KDEBUG
    2021   if( !kbTest(b) )Werror("nc_kBucketPolyRed: broken bucket!");
     2021  if( !kbTest(b) ) WerrorS("nc_kBucketPolyRed: broken bucket!");
    20222022#endif
    20232023
     
    25982598//  {
    25992599//#ifdef PDEBUF
    2600 //    Werror("nc_p_CopyGet call not in currRing");
     2600//    WerrorS("nc_p_CopyGet call not in currRing");
    26012601//#endif
    26022602//    return(NULL);
     
    26192619//  {
    26202620//#ifdef PDEBUF
    2621 //    Werror("nc_p_CopyGet call not in currRing");
     2621//    WerrorS("nc_p_CopyGet call not in currRing");
    26222622//#endif
    26232623//    return(NULL);
     
    28792879    if (!p_IsConstant(CN,curr))
    28802880    {
    2881       Werror("Incorrect input : non-constants are not allowed as coefficients (first argument)");
     2881      WerrorS("Incorrect input : non-constants are not allowed as coefficients (first argument)");
    28822882      return TRUE;
    28832883    }
     
    28872887    if (n_IsZero(nN, curr))
    28882888    {
    2889       Werror("Incorrect input : zero coefficients are not allowed");
     2889      WerrorS("Incorrect input : zero coefficients are not allowed");
    28902890
    28912891//      if( currRing != save )
     
    29452945        // find also illegal pN
    29462946        {
    2947           Werror("Incorrect input : matrix of coefficients contains zeros in the upper triangle");
     2947          WerrorS("Incorrect input : matrix of coefficients contains zeros in the upper triangle");
    29482948
    29492949//        if( currRing != save )
     
    30463046    if( bDnew ) mp_Delete( &D, r );
    30473047
    3048     Werror("Matrix of polynomials violates the ordering condition");
     3048    WerrorS("Matrix of polynomials violates the ordering condition");
    30493049
    30503050//    if( currRing != save )
     
    33863386    if ((shift<0) || (shift > rVar(srcRing))) // ???
    33873387    {
    3388       Werror("bad shifts in p_CopyEmbed");
     3388      WerrorS("bad shifts in p_CopyEmbed");
    33893389      return(0);
    33903390    }
Note: See TracChangeset for help on using the changeset viewer.