Changeset 737b2b4 in git
- Timestamp:
- Mar 23, 1998, 3:07:54 PM (25 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- e1fc2d0c27c83083d3659ec4904f339c71a94fa7
- Parents:
- 18255d9ac71af356d5f2f1ae0cd213ab439c90ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/kstdfac.cc
r18255d r737b2b4 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstdfac.cc,v 1.1 2 1998-03-16 14:56:34 obachman Exp $ */4 /* $Id: kstdfac.cc,v 1.13 1998-03-23 14:07:54 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT - Kernel: factorizing alg. of Buchberger … … 28 28 #include "lists.h" 29 29 #include "ideals.h" 30 #ifdef COMP_FAST31 30 #include "spSpolyLoop.h" 32 #endif33 31 #include "timer.h" 34 32 #include "kstdfac.h" … … 178 176 s->update=o->update; 179 177 s->posInLOldFlag=o->posInLOldFlag; 180 if (o->kModW!=NULL) 181 s->kModW=ivCopy(o->kModW); 182 else 183 s->kModW=NULL; 178 s->kModW = o->kModW; 179 // if (o->kModW!=NULL) 180 // s->kModW=ivCopy(o->kModW); 181 // else 182 // s->kModW=NULL; 184 183 s->pairtest=NULL; 185 184 s->sl=o->sl; … … 208 207 s->fromT=o->fromT; 209 208 s->noetherSet=o->noetherSet; 210 #ifdef COMP_FAST211 209 s->spSpolyLoop = o->spSpolyLoop; 212 #endif213 210 return s; 214 211 } … … 731 728 if ((h==testHomog)) 732 729 { 733 if (idRankFreeModule(F)==0) 730 strat->ak = idRankFreeModule(F); 731 if (strat->ak==0) 734 732 { 735 733 h = (tHomog)idHomIdeal(F,Q); … … 744 742 { 745 743 kModW = *w; 744 strat->kModW = *w; 746 745 pOldFDeg = pFDeg; 747 746 pFDeg = kModDeg; … … 753 752 strat->homog=h; 754 753 spSet(currRing); 755 #ifdef COMP_FAST756 754 strat->spSpolyLoop = spGetSpolyLoop(currRing, strat); 757 #endif758 755 initBuchMoraCrit(strat); /*set Gebauer, honey, sugarCrit*/ 759 756 initBuchMoraPos(strat);
Note: See TracChangeset
for help on using the changeset viewer.