Changeset c17211 in git
- Timestamp:
- Jul 21, 2009, 5:56:28 PM (14 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 398e356af90a233e52f0e75963d68f0926efab9c
- Parents:
- 68cb55508d2c7851e1de7a118d6c72884ad79ce4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gfan.cc
r68cb555 rc17211 2 2 Compute the Groebner fan of an ideal 3 3 $Author: monerjan $ 4 $Date: 2009-07-2 0 12:39:26$5 $Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.7 8 2009-07-20 12:39:26monerjan Exp $6 $Id: gfan.cc,v 1.7 8 2009-07-20 12:39:26monerjan Exp $4 $Date: 2009-07-21 15:56:28 $ 5 $Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.79 2009-07-21 15:56:28 monerjan Exp $ 6 $Id: gfan.cc,v 1.79 2009-07-21 15:56:28 monerjan Exp $ 7 7 */ 8 8 … … 54 54 55 55 #ifndef gfan_DEBUG 56 //#define gfan_DEBUG56 #define gfan_DEBUG 57 57 #endif 58 58 … … 1191 1191 f->flipRing=rCopy(dstRing); //store the ring on the other side 1192 1192 //#ifdef gfan_DEBUG 1193 cout << "Flipped GB is :" << endl;1193 cout << "Flipped GB is UCN " << counter+1 << ":" << endl; 1194 1194 f->printFlipGB(); 1195 1195 cout << endl; … … 1276 1276 { 1277 1277 res->m[ii]=restOfDiv(H->m[ii],G); 1278 //res->m[ii]=kNF( H->m[ii],G);1278 //res->m[ii]=kNF(G, NULL,H->m[ii]); 1279 1279 temp1=H->m[ii]; 1280 1280 temp2=res->m[ii]; … … 1915 1915 for (int ii=0;ii<(M->colsize)-1;ii++) 1916 1916 { 1917 mpz_lcm(kgV,tmp,denom[ii]); 1917 mpz_lcm(kgV,tmp,denom[ii]); 1918 mpz_set(tmp,kgV); 1918 1919 } 1919 1920 … … 2082 2083 removalOccured=TRUE; 2083 2084 slAct->isFlippable=FALSE; 2085 doNotAdd=TRUE; 2084 2086 if(slAct==slHead) //We want to delete the first element of SearchList 2085 2087 { … … 2107 2109 { 2108 2110 slAct->prev->next = slAct->next; 2111 slAct->next->prev = slAct->prev; 2109 2112 } 2110 2113 //update lengthOfSearchList … … 2115 2118 { 2116 2119 doNotAdd=FALSE; 2117 break;2120 //break; 2118 2121 } 2119 2122 }//if(!isParallel(fNormal, slNormal))
Note: See TracChangeset
for help on using the changeset viewer.