Ignore:
Timestamp:
Mar 15, 2012, 7:37:03 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
4d94c97313de2ce07f4bfae84308b31c1294a569
Parents:
55e2df02f4f427087fcfc2be9320bbce5142bfe9
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-15 19:37:03+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-16 19:36:35+01:00
Message:
better rEqual & rSamePolyRep

fix: they both should test the equality of coeffs directly (NOT via type & rPar/Minpoly)
fix: rEqual should use rSamePolyRep
chg: moved documentation to header in doxygen style
File:
1 edited

Legend:

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

    r55e2df0 r90934a  
    392392int rSumInternal(ring r1, ring r2, ring &sum, BOOLEAN vartest, BOOLEAN dp_dp);
    393393
    394 BOOLEAN rEqual(ring r1, ring r2, BOOLEAN qr = 1);
     394/// returns TRUE, if r1 equals r2 FALSE, otherwise Equality is
     395/// determined componentwise, if qr == 1, then qrideal equality is
     396/// tested, as well
     397BOOLEAN rEqual(ring r1, ring r2, BOOLEAN qr = TRUE);
     398
     399/// returns TRUE, if r1 and r2 represents the monomials in the same way
     400/// FALSE, otherwise
     401/// this is an analogue to rEqual but not so strict
    395402BOOLEAN rSamePolyRep(ring r1, ring r2);
     403
    396404void   rUnComplete(ring r);
    397405
Note: See TracChangeset for help on using the changeset viewer.