Changeset bbcf7c8 in git


Ignore:
Timestamp:
Mar 21, 2014, 1:21:05 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
0929ddc2c6615bd5e6fc2fcc07f26b85bdee0be9
Parents:
82393119769dfceb9f02d05dfaae6504348f93a4
Message:
fix: tr. 587 (qring q=ideal(0);.... sres()..)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipassign.cc

    r823931 rbbcf7c8  
    773773    idDelete(&qr->qideal);
    774774  }
    775   qr->qideal = id;
     775  if (idElem(id)==0)
     776  {
     777    qr->qideal = NULL;
     778    id_Delete(&id,currRing);
     779    IDTYP(h)=RING_CMD;
     780  }
     781  else
     782    qr->qideal = id;
    776783
    777784  // qr is a copy of currRing with the new qideal!
    778785  #ifdef HAVE_PLURAL
    779   if(rIsPluralRing(currRing))
     786  if(rIsPluralRing(currRing) &&(qr->qideal!=NULL))
    780787  {
    781788    if (!hasFlag(a,FLAG_TWOSTD))
Note: See TracChangeset for help on using the changeset viewer.