Changeset f924d7d in git


Ignore:
Timestamp:
Oct 17, 2017, 3:13:41 PM (7 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
fec931f5858df3f8979af865faeb6037f072942d
Parents:
6518ebab64bf516f9ebcdf4e9e11aed030056a3c
Message:
minor opt: p_Shift (syz et.al.)
File:
1 edited

Legend:

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

    r6518eba rf924d7d  
    45464546
    45474547  if (j+i < 0) return ;
     4548  BOOLEAN toPoly= ((j == -i) && (j == k));
    45484549  while (qp1 != NULL)
    45494550  {
    4550     if ((__p_GetComp(qp1,r)+i > 0) || ((j == -i) && (j == k)))
     4551    if (toPoly || (__p_GetComp(qp1,r)+i > 0))
    45514552    {
    45524553      p_AddComp(qp1,i,r);
Note: See TracChangeset for help on using the changeset viewer.