Changeset aa8903 in git


Ignore:
Timestamp:
Mar 4, 2022, 11:37:18 AM (15 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
fbe26b91aa7d6303b5e0c3c2dc425159b4d51d7f
Parents:
2b91e27cb3d8840cd23a3ce2614cdf9fd3128bfb13ff55091aa77a8304df558efd0ae1f94422c9d6
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2022-03-04 11:37:18+01:00
git-committer:
GitHub <noreply@github.com>2022-03-04 11:37:18+01:00
Message:
Merge pull request #1132 from YueRen/bug_lukas

gfanlib: workaround for bug caused by copying SymmetricComplex
File:
1 edited

Legend:

Unmodified
Added
Removed
  • gfanlib/gfanlib_zfan.cpp

    r2b91e2 raa8903  
    3636  ZCone ZFan::getCone(int dimension, int index, bool orbit, bool maximal)const
    3737  {
     38    this->ensureComplex();
    3839    IntVector indices=getConeIndices(dimension,index,orbit,maximal);
    3940    ZCone ret=this->complex->makeZCone(indices);
     
    217218    if(f.complex)
    218219      {
    219         complex=new SymmetricComplex(*f.complex);
     220        // complex=new SymmetricComplex(*f.complex); // commented out due to bug by Lukas
     221        // LIB "gfan.lib";
     222        // proc getfirst(fan f)
     223        // {
     224        //   int dimf = dimension(f);
     225        //   cone c = getCone(f, dimf, 1, 1);
     226        //   return(c);
     227        // }
     228        // intmat M[3][3]=
     229        //   1,0,0,
     230        //   0,1,0,
     231        //   0,0,1;
     232        // cone c = coneViaPoints(M);
     233        // fan f = fanViaCones(c);
     234        // f;
     235        // getfirst(f);
    220236      }
    221237  }
Note: See TracChangeset for help on using the changeset viewer.