Changeset 286f4d in git


Ignore:
Timestamp:
Jul 12, 2019, 5:19:57 PM (5 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
f987c86786ad9b6a31ad439fde251ee3310d29d3
Parents:
42c7a179c2e2e9d42f920f55cded9b5ec01f86a1
Message:
change Dp(1)/dp(1) to lp only if lp follows (otherwise; rComplete optimizes)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.cc

    r42c7a1 r286f4d  
    52315231        if ((*iv)[2]==1)
    52325232        {
    5233           (*iv)[1]=ringorder_lp;
    5234           change=TRUE;
     5233          if(h->next!=NULL)
     5234          {
     5235            intvec *iv2 = (intvec *)(h->next->data);
     5236            if ((*iv2)[1]==ringorder_lp)
     5237            {
     5238              (*iv)[1]=ringorder_lp;
     5239              change=TRUE;
     5240            }
     5241          }
    52355242        }
    52365243      }
Note: See TracChangeset for help on using the changeset viewer.