Changeset 57bfa2 in git for kernel/syz.cc
- Timestamp:
- Apr 14, 2009, 2:40:46 PM (14 years ago)
- Branches:
- (u'spielwiese', 'f6c3dc58b0df4bd712574325fe76d0626174ad97')
- Children:
- 29a96670493a61dce0e68a57c46668b689508d12
- Parents:
- 797d4f19229a77bdf9613bc5ed8a5f46eaebabe4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/syz.cc
r797d4f r57bfa2 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: syz.cc,v 1.2 0 2009-04-10 19:03:44motsak Exp $ */4 /* $Id: syz.cc,v 1.21 2009-04-14 12:40:46 motsak Exp $ */ 5 5 6 6 /* … … 616 616 syStrategy syResolution(ideal arg, int maxlength,intvec * w, BOOLEAN minim) 617 617 { 618 #define QSyzTest 0619 618 620 619 #ifdef HAVE_PLURAL 621 620 622 #if QSyzTest 623 ideal idSaveCurrQuotient = currQuotient; 624 ideal idSaveCurrRingQuotient = currRing->qideal; 625 #endif 621 const ideal idSaveCurrQuotient = currQuotient; 622 const ideal idSaveCurrRingQuotient = currRing->qideal; 626 623 627 624 if( rIsSCA(currRing) ) … … 633 630 #endif 634 631 635 #if QSyzTest 636 currQuotient = SCAQuotient(currRing); 637 currRing->qideal = currQuotient; 638 #endif 632 if( ncExtensions(TESTSYZSCAMASK) ) 633 { 634 currQuotient = SCAQuotient(currRing); 635 currRing->qideal = currQuotient; 636 } 639 637 640 638 const unsigned int m_iFirstAltVar = scaFirstAltVar(currRing); … … 685 683 { 686 684 687 #if QSyzTest 688 currQuotient = idSaveCurrQuotient; 689 currRing->qideal = idSaveCurrRingQuotient; 690 #endif 685 if( ncExtensions(TESTSYZSCAMASK) ) 686 { 687 currQuotient = idSaveCurrQuotient; 688 currRing->qideal = idSaveCurrRingQuotient; 689 } 691 690 692 691 id_Delete(&arg, currRing);
Note: See TracChangeset
for help on using the changeset viewer.