Changeset d02a0a1 in git
- Timestamp:
- Aug 22, 2011, 5:55:25 PM (12 years ago)
- 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
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/nc.cc
r2e757c rd02a0a1 384 384 SI = idMultSect(S, syzcnt); 385 385 //idShow(SI); 386 MI = id Module2Matrix(SI);386 MI = id_Module2Matrix(SI,currRing); 387 387 res= idInit(MATCOLS(MI),1); 388 388 for (i=1; i<= MATCOLS(MI); i++) -
kernel/syz3.cc
r2e757c rd02a0a1 1858 1858 old_repr = idCopy(syzstr->orderedRes[0]); 1859 1859 old_tl = (*syzstr->Tl)[0]; 1860 old_std = id Head(syzstr->res[0]);1860 old_std = id_Head(syzstr->res[0],currRing); 1861 1861 } 1862 1862 t_comp = (*syzstr->Tl)[index]; … … 1875 1875 { 1876 1876 /*----------- we are computing the regularity -----------------------*/ 1877 ideal initial=id Head(syzstr->res[0]);1877 ideal initial=id_Head(syzstr->res[0],currRing); 1878 1878 int len=0,reg=0; 1879 1879 intvec *w=NULL; … … 1948 1948 #ifdef SHOW_RESULT 1949 1949 Print("The %d-th syzygy-module is now:\n",index); 1950 ideal ttt=id Head(syzstr->fullres[index]);1950 ideal ttt=id_Head(syzstr->fullres[index],currRing); 1951 1951 idShow(ttt); 1952 1952 idDelete(&ttt); -
kernel/walkSupport.cc
r2e757c rd02a0a1 980 980 int rows=IDELEMS(Gomega); 981 981 int cols=IDELEMS(Mtmp); 982 matrix res=id Module2formatedMatrix(Mtmp,rows,cols);982 matrix res=id_Module2formatedMatrix(Mtmp,rows,cols,currRing); 983 983 return res; 984 984 }
Note: See TracChangeset
for help on using the changeset viewer.