Changeset e259fe in git
- Timestamp:
- Sep 16, 2008, 2:33:18 PM (15 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 36605fd3c4e2a7b120265ffeb5acfc3f0e20a74e
- Parents:
- 78558861c9f8b6003b3c438433e75d1eba76dc57
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kutil.cc
r785588 re259fe 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1.10 7 2008-09-09 15:46:14Singular Exp $ */4 /* $Id: kutil.cc,v 1.108 2008-09-16 12:33:18 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 5764 5764 strat->sl = -1; 5765 5765 /*- set L -*/ 5766 strat->Lmax = setmaxL;5766 strat->Lmax = ((IDELEMS(F)+setmaxLinc-1)/setmaxLinc)*setmaxLinc; 5767 5767 strat->Ll = -1; 5768 strat->L = initL( );5768 strat->L = initL(((IDELEMS(F)+setmaxLinc-1)/setmaxLinc)*setmaxLinc); 5769 5769 /*- set B -*/ 5770 5770 strat->Bmax = setmaxL; -
kernel/kutil.h
r785588 re259fe 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: kutil.h,v 1.3 7 2008-07-09 08:26:30 wienandExp $ */6 /* $Id: kutil.h,v 1.38 2008-09-16 12:33:18 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT: kernel: utils for kStd … … 350 350 void deleteInS (int i,kStrategy strat); 351 351 void cleanT (kStrategy strat); 352 static inline LSet initL ( )353 { return (LSet)omAlloc( setmaxL*sizeof(LObject)); };352 static inline LSet initL (int nr=setmaxL) 353 { return (LSet)omAlloc(nr*sizeof(LObject)); }; 354 354 void deleteInL(LSet set, int *length, int j,kStrategy strat); 355 355 void enterL (LSet *set,int *length, int *LSetmax, LObject p,int at);
Note: See TracChangeset
for help on using the changeset viewer.