Changeset 379ec2 in git for Singular/iparith.cc


Ignore:
Timestamp:
Nov 28, 2023, 1:36:58 PM (6 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
9bfa4dc4755d071a0d1290dd0e3cda52bac9f27e
Parents:
1170388a280084e303867145f98985f03b2af06d
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2023-11-28 13:36:58+01:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2023-11-28 13:42:17+01:00
Message:
stdhilb_w
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r1170388 r379ec2  
    73057305    }
    73067306  }
     7307  bigintmat *vv=(bigintmat*)v->Data();
     7308  intvec* vvv=new intvec(1,vv->cols());
     7309  for(int i=0;i<vv->cols();i++)
     7310  {
     7311    (*vvv)[i]=n_Int(BIMATELEM(*vv,1,i+1),coeffs_BIGINT);
     7312  }
    73077313  result=kStd(u_id,
    73087314              currRing->qideal,
    73097315              hom,
    7310               &ww,                  // module weights
    7311               (intvec *)v->Data(),  // hilbert series
    7312               0,0,                  // syzComp, newIdeal
    7313               vw);                  // weights of vars
     7316              &ww,  // module weights
     7317              vvv,  // hilbert series
     7318              0,0,  // syzComp, newIdeal
     7319              vw);  // weights of vars
    73147320  idSkipZeroes(result);
     7321  delete vvv;
    73157322  res->data = (char *)result;
    73167323  setFlag(res,FLAG_STD);
Note: See TracChangeset for help on using the changeset viewer.