Changeset 9dd6270 in git for kernel/ideals.cc
- Timestamp:
- Mar 2, 2007, 10:25:56 AM (16 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- be5fcb007b3de5a139873cc1523021d204b5baa3
- Parents:
- 4d50d8c4a5d37443bad73bab01c065bf8d7a4a6a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/ideals.cc
r4d50d8c r9dd6270 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ideals.cc,v 1. 39 2007-02-16 10:50:10 motsakExp $ */4 /* $Id: ideals.cc,v 1.40 2007-03-02 09:25:56 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - all basic methods to manipulate ideals … … 584 584 585 585 if (h == NULL) return TRUE; 586 i = IDELEMS(h) ;587 while ((i > 0) && (h->m[i-1] == NULL))586 i = IDELEMS(h)-1; 587 while ((i >= 0) && (h->m[i] == NULL)) 588 588 { 589 589 i--; 590 590 } 591 if (i ==0)591 if (i < 0) 592 592 return TRUE; 593 593 else
Note: See TracChangeset
for help on using the changeset viewer.