Changeset c1b19cc in git
- Timestamp:
- Jan 5, 2010, 2:13:28 PM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 1d43d184dd871d77c1ba8e095d768f22a0fbe92f
- Parents:
- 835d837d628ffb434ebd7c6219fa7994bdd7d61e
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r835d83 rc1b19cc 3015 3015 { 3016 3016 atSet(res,omStrDup("isHomog"),ivCopy(weights),INTVEC_CMD); 3017 r->weights = (intvec**)omAlloc0Bin( void_ptr_bin);3017 r->weights = (intvec**)omAlloc0Bin(char_ptr_bin); 3018 3018 (r->weights)[0] = ivCopy(weights); 3019 3019 } … … 6271 6271 else 6272 6272 { 6273 weights = (intvec**)omAlloc0Bin( void_ptr_bin);6273 weights = (intvec**)omAlloc0Bin(char_ptr_bin); 6274 6274 weights[0] = ivCopy(iv); 6275 6275 } -
Singular/mpsr_Get.cc
r835d83 rc1b19cc 180 180 memcpy(&(n->z), apint, sizeof(MP_INT)); 181 181 nlNormalize(n); 182 omFree Bin(apint, MP_INT_bin);182 omFreeSize(apint, sizeof(MP_INT)); 183 183 mlv->lv = mpsr_InitLeftv(NUMBER_CMD, n); 184 184 } -
Singular/subexpr.h
r835d83 rc1b19cc 13 13 #include "tok.h" 14 14 #include "structs.h" 15 #include "febase.h" 16 #include "ring.h" 15 17 16 18 struct _ssubexpr
Note: See TracChangeset
for help on using the changeset viewer.