Changeset a35d3d7 in git for libpolys/polys


Ignore:
Timestamp:
May 23, 2016, 5:48:34 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
181bf31ff3cd5591f8ad17307f4c78803ea11f4e
Parents:
bdebb84b7e5e44a3f0d26a19f9d7ad9a6470e0d6
Message:
code cleanup: avoid local definition, use header
File:
1 edited

Legend:

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

    rbdebb8 ra35d3d7  
    15031503{
    15041504  int res = p_LmCmp(p,q,r);
    1505   if(p_GetCoeff(p,r) == NULL || p_GetCoeff(q,r) == NULL)
    1506     return res;
    15071505  if(res == 0)
    15081506  {
     1507    if(p_GetCoeff(p,r) == NULL || p_GetCoeff(q,r) == NULL)
     1508      return res;
    15091509    number pc = n_Copy(p_GetCoeff(p,r),r->cf);
    15101510    number qc = n_Copy(p_GetCoeff(q,r),r->cf);
Note: See TracChangeset for help on using the changeset viewer.