Changeset fa98a4 in git
- Timestamp:
- May 8, 2006, 2:55:12 PM (17 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- cfbcdce9a4b6526bc3148967251de0357d90401e
- Parents:
- fda36e719dc9e0838a50e32a6595be7b93efe867
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kInline.cc
rfda36e rfa98a4 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 8/00 9 * Version: $Id: kInline.cc,v 1. 2 2004-08-03 17:33:55Singular Exp $9 * Version: $Id: kInline.cc,v 1.3 2006-05-08 12:55:10 Singular Exp $ 10 10 *******************************************************************/ 11 11 #ifndef KINLINE_CC … … 314 314 { 315 315 if (t_p != NULL) 316 { 316 { 317 317 pNormalize(t_p); 318 318 if (p != NULL) pSetCoeff0(p, pGetCoeff(t_p)); … … 327 327 { 328 328 if (t_p != NULL) 329 { 329 { 330 330 nNormalize(pGetCoeff(t_p)); 331 331 if (p != NULL) pSetCoeff0(p, pGetCoeff(t_p)); -
kernel/kutil.cc
rfda36e rfa98a4 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1.2 1 2006-03-20 20:33:56 wienandExp $ */4 /* $Id: kutil.cc,v 1.22 2006-05-08 12:55:11 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 2041 2041 h.sev = pGetShortExpVector(h.p); 2042 2042 h.t_p = k_LmInit_currRing_2_tailRing(h.p, strat->tailRing); 2043 if (pNext(p) != NULL) 2044 { 2045 pShallowCopyDeleteProc p_shallow_copy_delete 2046 = pGetShallowCopyDeleteProc(strat->tailRing, new_tailRing); 2047 pNext(p) = p_shallow_copy_delete(pNext(p), 2048 currRing, strat->tailRing, strat->tailRing->PolyBin); 2049 } 2043 2050 enterL(&strat->L,&strat->Ll,&strat->Lmax,h,posx); 2044 2051 } -
kernel/ring.cc
rfda36e rfa98a4 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.4 5 2005-11-28 16:32:34Singular Exp $ */4 /* $Id: ring.cc,v 1.46 2006-05-08 12:55:12 Singular Exp $ */ 5 5 6 6 /* … … 3285 3285 } 3286 3286 3287 void pDebugPrintR(poly p, ring r)3287 void pDebugPrintR(poly p, const ring r) 3288 3288 { 3289 3289 int i,j; 3290 p Write(p);3290 p_Write(p,r); 3291 3291 j=2; 3292 3292 while(p!=NULL) … … 3294 3294 Print("\nexp[0..%d]\n",r->ExpL_Size-1); 3295 3295 for(i=0;i<r->ExpL_Size;i++) 3296 Print("% d ",p->exp[i]);3296 Print("%ld ",p->exp[i]); 3297 3297 PrintLn(); 3298 3298 Print("v0:%d ",p_GetComp(p, r));
Note: See TracChangeset
for help on using the changeset viewer.