Changeset c1f4a68 in git
- Timestamp:
- Aug 12, 2011, 4:57:58 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- c44ade5c5d94cce70d6072c75d6bb200477b0a83
- Parents:
- 33e249b0536a97f2ce55d8d4301209e30d449476
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-12 16:57:58+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:22:42+01:00
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r33e249b rc1f4a68 3460 3460 intvec *iv; 3461 3461 ideal m; 3462 sm CallBareiss((ideal)v->Data(),0,0,m,&iv);3462 sm_CallBareiss((ideal)v->Data(),0,0,m,&iv, currRing); 3463 3463 lists l=(lists)omAllocBin(slists_bin); 3464 3464 l->Init(2); … … 3648 3648 matrix m=(matrix)v->Data(); 3649 3649 poly p; 3650 if (sm CheckDet((ideal)m,m->cols(),TRUE))3650 if (sm_CheckDet((ideal)m,m->cols(),TRUE, currRing)) 3651 3651 { 3652 3652 ideal I=idMatrix2Module(mp_Copy(m,currRing)); 3653 p=sm CallDet(I);3653 p=sm_CallDet(I, currRing); 3654 3654 idDelete(&I); 3655 3655 } … … 3678 3678 poly p; 3679 3679 if (IDELEMS(I)<1) return TRUE; 3680 if (sm CheckDet(I,IDELEMS(I),FALSE))3680 if (sm_CheckDet(I,IDELEMS(I),FALSE, currRing)) 3681 3681 { 3682 3682 matrix m=idModule2Matrix(idCopy(I)); … … 3685 3685 } 3686 3686 else 3687 p=sm CallDet(I);3687 p=sm_CallDet(I, currRing); 3688 3688 res->data = (char *)p; 3689 3689 return FALSE; … … 5366 5366 if (k>=0) 5367 5367 { 5368 sm CallBareiss((ideal)u->Data(),(int)(long)v->Data(),(int)(long)w->Data(),m,&iv);5368 sm_CallBareiss((ideal)u->Data(),(int)(long)v->Data(),(int)(long)w->Data(),m,&iv, currRing); 5369 5369 l->Init(2); 5370 5370 l->m[0].rtyp=MODUL_CMD; … … 5375 5375 else 5376 5376 { 5377 m=sm CallSolv((ideal)u->Data());5377 m=sm_CallSolv((ideal)u->Data(), currRing); 5378 5378 l->Init(1); 5379 5379 l->m[0].rtyp=IDEAL_CMD; -
numeric/mpr_base.cc
r33e249b rc1f4a68 1839 1839 mprSTICKYPROT(ST__DET); // 1 1840 1840 1841 poly pres= sm CallDet( rmat);1841 poly pres= sm_CallDet( rmat, currRing ); 1842 1842 number numres= nCopy( pGetCoeff( pres ) ); 1843 1843 pDelete( &pres ); … … 1909 1909 mprSTICKYPROT(ST__DET); // 1 1910 1910 1911 poly pres= sm CallDet( rmat);1911 poly pres= sm_CallDet( rmat, currRing ); 1912 1912 1913 1913 mprSTICKYPROT(ST__DET); // 2
Note: See TracChangeset
for help on using the changeset viewer.