Ignore:
Timestamp:
Mar 16, 2012, 8:22:15 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
7fee87629a807b6be566a7757b3b60f36c22d651
Parents:
cd9796d49b820bd9ecc81b49dc04073e0bbf6012
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-16 20:22:15+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-16 21:36:33+01:00
Message:
fixed short/long output of coeffs depending on ShortOut/CanShortOut options of rings

Note: the ugly ShortOut correction p_String0Short/p_String0Long is due to Hans
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/ring.h

    rcd9796 rce1f78  
    522522static inline BOOLEAN rShortOut(const ring r)
    523523{
    524   assume(r != NULL); assume(r->cf != NULL); return (r->ShortOut);
     524  assume(r != NULL); return (r->ShortOut);
     525}
     526
     527static inline BOOLEAN rCanShortOut(const ring r)
     528{
     529  assume(r != NULL); return (r->CanShortOut);
    525530}
    526531
Note: See TracChangeset for help on using the changeset viewer.