Changeset e044528 in git for kernel/polys.h


Ignore:
Timestamp:
Sep 8, 2011, 9:16:31 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d02fff666539bb449e45ae13851d7d81e05c75bc
Parents:
f7aa4c7c61207b077fe954f2e563ca261edcc109
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-08 21:16:31+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:37+01:00
Message:
FIX: pCompareChain & pCompareChainPart
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/polys.h

    rf7aa4c7 re044528  
    351351
    352352/*-----------specials for spoly-computations--------------*/
    353 BOOLEAN pCompareChain (poly p,poly p1,poly p2,poly lcm);
    354 BOOLEAN pCompareChainPart (poly p,poly p1,poly p2,poly lcm);
     353
     354/// Returns TRUE if
     355///      * LM(p) | LM(lcm)
     356///      * LC(p) | LC(lcm) only if ring
     357///      * Exists i, j:
     358///          * LE(p, i)  != LE(lcm, i)
     359///          * LE(p1, i) != LE(lcm, i)   ==> LCM(p1, p) != lcm
     360///          * LE(p, j)  != LE(lcm, j)
     361///          * LE(p2, j) != LE(lcm, j)   ==> LCM(p2, p) != lcm
     362BOOLEAN pCompareChain (poly p, poly p1, poly p2, poly lcm, const ring R = currRing);
     363
    355364#define  pEqualPolys(p1,p2) p_EqualPolys(p1,p2,currRing)
     365
    356366
    357367
Note: See TracChangeset for help on using the changeset viewer.