Changeset cbe144 in git for libpolys/coeffs


Ignore:
Timestamp:
Feb 20, 2013, 11:35:06 AM (11 years ago)
Author:
Janko Boehm <boehm@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
e18d478679b78ee0cfd8d5a87279188b22bfd54b
Parents:
f0daf4f117c7cff03f5b07e80e743940722278b1
git-author:
Janko Boehm <boehm@mathematik.uni-kl.de>2013-02-20 11:35:06+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-02-20 14:45:21+01:00
Message:
Changed errors to warnings in debug mode
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/ffields.cc

    rf0daf4f rcbe144  
    661661  if (fftable[i]==0)
    662662  {
    663     Werror("illegal GF-table size: %d", c);
     663#ifndef NDEBUG
     664    Warn("illegal GF-table size: %d", c);
     665#endif
    664666    return;
    665667  }
     
    929931  if(p->GFChar > (2<<15))
    930932  {
    931     Werror("illegal characteristic");
     933#ifndef NDEBUG
     934    Warn("illegal characteristic");
     935#endif
    932936    return TRUE;
    933937  }
     
    937941  if( (p->GFDegree * check) > sixteenlog2 )
    938942  {
    939     Werror("Sorry: illegal size: %u ^ %u", p->GFChar, p->GFDegree );
     943#ifndef NDEBUG
     944    Warn("Sorry: illegal size: %u ^ %u", p->GFChar, p->GFDegree );
     945#endif
    940946    return TRUE;
    941947  }
     
    947953  if( r->m_nfPlus1Table == NULL )
    948954  {
    949     Werror("Sorry: cannot init lookup table!");
     955#ifndef NDEBUG
     956    Warn("Sorry: cannot init lookup table!");
     957#endif
    950958    return TRUE;
    951959  }
Note: See TracChangeset for help on using the changeset viewer.