Changeset 0da7db in git


Ignore:
Timestamp:
Feb 8, 2016, 12:45:17 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
42fe0265afe6128f9fea4f5c11d875f9997b45fd
Parents:
1adac1b2916bf7e04ad3ec1f5e9c7c86be2e4de5
Message:
fix: check for exponent overflow in monomial: x65000
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/p_polys.cc

    r1adac1b r0da7db  
    13781378      const char *s_save=s;
    13791379      s = eati(s,&i);
    1380       if (((unsigned long)i) >  r->bitmask)
     1380      if (((unsigned long)i) >  r->bitmask/2)
    13811381      {
    13821382        // exponent to large: it is not a monomial
Note: See TracChangeset for help on using the changeset viewer.