Changeset e4c540 in git


Ignore:
Timestamp:
Nov 21, 2014, 4:30:01 PM (9 years ago)
Author:
Yue Ren <ren@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
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
Message:
chg: status update for Sebastian
Location:
Singular/dyn_modules/gfanlib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/dyn_modules/gfanlib/bbfan.cc

    rc96414 re4c540  
    8585      delete zd;
    8686    }
    87     gfan::ZFan* zf = (gfan::ZFan*) r->Data();
    88     newZf = new gfan::ZFan(*zf);
     87    newZf = (gfan::ZFan*) r->CopyD();
    8988  }
    9089  else if (r->Typ()==INT_CMD)
  • Singular/dyn_modules/gfanlib/tropicalVariety.cc

    rc96414 re4c540  
    4747  if ((u!=NULL) && (u->Typ()==IDEAL_CMD))
    4848  {
    49     ideal I = (ideal) u->CopyD();
     49    ideal I = (ideal) u->Data();
    5050    leftv v = u->next;
    5151
     
    5757        tropicalStrategy currentStrategy(I,currRing);
    5858        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;
    5963        // while (1)
    6064        // {
     
    6872        res->rtyp = fanID;
    6973        res->data = (char*) toZFan(maxCones);
    70         id_Delete(&I,currRing);
    7174        return FALSE;
    7275      }
Note: See TracChangeset for help on using the changeset viewer.