Changeset e4c540 in git
- Timestamp:
- Nov 21, 2014, 4:30:01 PM (9 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 4b47563a73afa1ce8193b66caba4ddd88af4f706
- Parents:
- c9641474cc5811d6eed949bf4509b30db0cbb721
- git-author:
- Yue Ren <ren@mathematik.uni-kl.de>2014-11-21 16:30:01+01:00
- git-committer:
- Yue Ren <ren@mathematik.uni-kl.de>2015-02-06 13:47:05+01:00
- Location:
- Singular/dyn_modules/gfanlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/dyn_modules/gfanlib/bbfan.cc
rc96414 re4c540 85 85 delete zd; 86 86 } 87 gfan::ZFan* zf = (gfan::ZFan*) r->Data(); 88 newZf = new gfan::ZFan(*zf); 87 newZf = (gfan::ZFan*) r->CopyD(); 89 88 } 90 89 else if (r->Typ()==INT_CMD) -
Singular/dyn_modules/gfanlib/tropicalVariety.cc
rc96414 re4c540 47 47 if ((u!=NULL) && (u->Typ()==IDEAL_CMD)) 48 48 { 49 ideal I = (ideal) u-> CopyD();49 ideal I = (ideal) u->Data(); 50 50 leftv v = u->next; 51 51 … … 57 57 tropicalStrategy currentStrategy(I,currRing); 58 58 std::set<gfan::ZCone> maxCones = tropicalVariety(g,currRing,currentStrategy); 59 // gfan::ZFan* zf = toZFan(maxCones); 60 // delete zf; 61 // res->rtyp = NONE; 62 // res->data = NULL; 59 63 // while (1) 60 64 // { … … 68 72 res->rtyp = fanID; 69 73 res->data = (char*) toZFan(maxCones); 70 id_Delete(&I,currRing);71 74 return FALSE; 72 75 }
Note: See TracChangeset
for help on using the changeset viewer.