Changeset 9599e0 in git
- Timestamp:
- Apr 26, 2005, 7:14:36 PM (18 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- a4ceb47b76e902681c7e1f39fadb76ac54490a8a
- Parents:
- bbb8267e0157b4d51f742151a7b1e9172a236fc9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/hutil.cc
rbbb8267 r9599e0 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: hutil.cc,v 1. 4 2005-04-22 16:32:15Singular Exp $ */4 /* $Id: hutil.cc,v 1.5 2005-04-26 17:14:36 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: Utilities for staircase operations … … 150 150 void hComp(scfmon exist, int Nexist, int ak, scfmon stc, int *Nstc) 151 151 { 152 int i = Nexist,k = 0;152 int k = 0; 153 153 scfmon ex = exist, co = stc; 154 for (; i; i--) 155 { 156 if (!(**ex) || ((**ex) == ak)) 154 int i; 155 156 for (i = Nexist; i>0; i--) 157 { 158 if (((**ex) == 0) || ((**ex) == ak)) 157 159 { 158 160 *co = *ex;
Note: See TracChangeset
for help on using the changeset viewer.