Changeset ebf6a6 in git
- Timestamp:
- Jul 6, 2009, 1:54:10 PM (14 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- e6d2f67d59d8d9127eab2943d2bf0c78e249d180
- Parents:
- 3a0e1a78889f30ca1c8f7bad0c13eda46d838010
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/hilb.cc
r3a0e1a rebf6a6 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: hilb.cc,v 1. 3 2006-09-20 16:47:14Singular Exp $ */4 /* $Id: hilb.cc,v 1.4 2009-07-06 11:54:10 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - Hilbert series … … 52 52 if (z > Ql[j]) 53 53 { 54 p = (int *)omAlloc(z * sizeof(int)); 54 if (z>(INT_MAX)/2) 55 { 56 Werror("interal arrays too big"); 57 return; 58 } 59 p = (int *)omAlloc((unsigned long)z * sizeof(int)); 55 60 if (Ql[j]!=0) 56 61 {
Note: See TracChangeset
for help on using the changeset viewer.