Changeset d02a0a1 in git


Ignore:
Timestamp:
Aug 22, 2011, 5:55:25 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
d5e030c6ae13cfeacde822cf49c50265948f5a5f
Parents:
2e757c48501ca724ccafe96fc2ffb048a4ca59de
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-08-22 17:55:25+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:24+01:00
Message:
fix idModule2...
Location:
kernel
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/nc.cc

    r2e757c rd02a0a1  
    384384      SI = idMultSect(S, syzcnt);
    385385    //idShow(SI);
    386     MI = idModule2Matrix(SI);
     386    MI = id_Module2Matrix(SI,currRing);
    387387    res= idInit(MATCOLS(MI),1);
    388388    for (i=1; i<= MATCOLS(MI); i++)
  • kernel/syz3.cc

    r2e757c rd02a0a1  
    18581858          old_repr = idCopy(syzstr->orderedRes[0]);
    18591859          old_tl = (*syzstr->Tl)[0];
    1860           old_std = idHead(syzstr->res[0]);
     1860          old_std = id_Head(syzstr->res[0],currRing);
    18611861        }
    18621862        t_comp = (*syzstr->Tl)[index];
     
    18751875        {
    18761876/*----------- we are computing the regularity -----------------------*/
    1877           ideal initial=idHead(syzstr->res[0]);
     1877          ideal initial=id_Head(syzstr->res[0],currRing);
    18781878          int len=0,reg=0;
    18791879          intvec *w=NULL;
     
    19481948#ifdef SHOW_RESULT
    19491949    Print("The %d-th syzygy-module is now:\n",index);
    1950     ideal ttt=idHead(syzstr->fullres[index]);
     1950    ideal ttt=id_Head(syzstr->fullres[index],currRing);
    19511951    idShow(ttt);
    19521952    idDelete(&ttt);
  • kernel/walkSupport.cc

    r2e757c rd02a0a1  
    980980  int rows=IDELEMS(Gomega);
    981981  int cols=IDELEMS(Mtmp);
    982   matrix res=idModule2formatedMatrix(Mtmp,rows,cols);
     982  matrix res=id_Module2formatedMatrix(Mtmp,rows,cols,currRing);
    983983  return res;
    984984}
Note: See TracChangeset for help on using the changeset viewer.