Changeset 2eb3db in git
- Timestamp:
- Jan 30, 2003, 10:41:04 PM (21 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- cd22d1a27db3332385586c32609b3ccce07f4c94
- Parents:
- f93c1c0e645bbb7a98fd80559cdcfe7e08465c20
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/gring.cc
rf93c1c0 r2eb3db 7 7 * Author: levandov (Viktor Levandovsky) 8 8 * Created: 8/00 - 11/00 9 * Version: $Id: gring.cc,v 1.2 2 2003-01-29 19:13:36levandov Exp $9 * Version: $Id: gring.cc,v 1.23 2003-01-30 21:41:01 levandov Exp $ 10 10 *******************************************************************/ 11 11 #include "mod2.h" … … 624 624 if (((a<cMTsize)&&(b<cMTsize))&&(MATELEM(cMT,a,b)!=NULL)) 625 625 { 626 out = prCopyR_NoSort(MATELEM(cMT,a,b),r->nc->basering,r);626 out = nc_p_CopyGet(MATELEM(cMT,a,b),r); 627 627 // out=p_Copy(MATELEM(cMT,a,b),r); 628 628 return (out); -
Singular/ideals.cc
rf93c1c0 r2eb3db 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ideals.cc,v 1.13 0 2002-05-29 09:38:49 mschulzeExp $ */4 /* $Id: ideals.cc,v 1.131 2003-01-30 21:41:02 levandov Exp $ */ 5 5 /* 6 6 * ABSTRACT - all basic methods to manipulate ideals … … 1464 1464 && (!TEST_OPT_NOTREGULARITY) 1465 1465 && (setRegularity) 1466 && (h==isHomog)) 1466 && (h==isHomog) 1467 && (!rIsPluralRing(currRing)) 1468 ) 1467 1469 { 1468 1470 ring dp_C_ring = rCurrRingAssure_dp_C(); -
Singular/syz.cc
rf93c1c0 r2eb3db 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: syz.cc,v 1.4 1 2001-10-09 16:36:25 SingularExp $ */4 /* $Id: syz.cc,v 1.42 2003-01-30 21:41:04 levandov Exp $ */ 5 5 6 6 /* … … 198 198 syz->m[k] = pMult(syz->m[k],pCopy(Unit1)); 199 199 syz->m[k] = pSub(syz->m[k], 200 pMult( pCopy(actWith),Unit2));200 pMult(Unit2,pCopy(actWith))); 201 201 if (syz->m[k]==NULL) 202 202 { … … 390 390 * no limitation in length if maxlength==0 391 391 * input:arg 392 * minim: TRUE means mres cmd, FALSE res cmd.393 * if *len!=0: modul weights: weights[0]392 * minim: TRUE means mres cmd, FALSE nres cmd. 393 * if *len!=0: module weights: weights[0] 394 394 * (and weights is defined:weights[0..len-1] 395 395 * 396 396 * output:resolvente r[0..length-1], 397 * modul weights: weights[0..length-1]397 * module weights: weights[0..length-1] 398 398 */ 399 399 resolvente syResolvente(ideal arg, int maxlength, int * length,
Note: See TracChangeset
for help on using the changeset viewer.