Changeset 16262b7 in git
- Timestamp:
- May 4, 1998, 1:38:57 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- bfa2f0a2efa10018731a15f33e610bc213c178f0
- Parents:
- b1e0d728de187e7f8d741366a8168300b783b9cd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ideals.cc
rb1e0d72 r16262b7 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ideals.cc,v 1.2 3 1998-04-29 07:05:25 siebertExp $ */4 /* $Id: ideals.cc,v 1.24 1998-05-04 11:38:57 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT - all basic methods to manipulate ideals … … 2933 2933 intvec * convert; 2934 2934 int i=IDELEMS(kbase),j=IDELEMS(arg),k,pos; 2935 2935 #if 0 2936 2936 while ((i>0) && (kbase->m[i-1]==NULL)) i--; 2937 2937 if (idIs0(arg)) … … 2939 2939 while ((j>0) && (arg->m[j-1]==NULL)) j--; 2940 2940 result = mpNew(i,j); 2941 #else 2942 result = mpNew(i, j); 2943 while ((j>0) && (arg->m[j-1]==NULL)) j--; 2944 #endif 2945 2941 2946 tempKbase = idCreateSpecialKbase(kbase,&convert); 2942 2947 for (k=0;k<j;k++)
Note: See TracChangeset
for help on using the changeset viewer.