Changeset b46b49 in git


Ignore:
Timestamp:
Jun 10, 2022, 8:26:41 PM (23 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f44605dd667b31244440631c364885e68324f469
Parents:
e5347a518adabdab778b23f992a5d83d9cfde542
Message:
opt: id_DelDiv, id_DelDivSorted
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/simpleideals.cc

    re5347a rb46b49  
    392392          if (id->m[j]!=NULL)
    393393          {
    394             if (p_DivisibleBy(id->m[i], id->m[j],r))
     394            if (p_LmDivisibleByNoComp(id->m[i], id->m[j],r))
    395395            {
    396396              p_Delete(&id->m[j],r);
    397397            }
    398             else if (p_DivisibleBy(id->m[j], id->m[i],r))
     398            else if (p_LmDivisibleByNoComp(id->m[j], id->m[i],r))
    399399            {
    400400              p_Delete(&id->m[i],r);
     
    423423        if (id->m[j]!=NULL)
    424424        {
    425           if (p_DivisibleBy(id->m[i], id->m[j],r))
     425          if (p_LmDivisibleByNoComp(id->m[i], id->m[j],r))
    426426          {
    427427            p_Delete(&id->m[j],r);
     
    429429            while(id->m[k]==NULL) k--;
    430430          }
    431           else if (p_DivisibleBy(id->m[j], id->m[i],r))
     431          else if (p_LmDivisibleByNoComp(id->m[j], id->m[i],r))
    432432          {
    433433            p_Delete(&id->m[i],r);
Note: See TracChangeset for help on using the changeset viewer.