Changeset 2f9ffd in git
- Timestamp:
- Jun 11, 1999, 4:25:59 PM (24 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 32820ddece73298afa8bef909edd914a3d0b8c3f
- Parents:
- 307e0a11a87b737dfc4e4996a02155a6a838221e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/pcv.cc
r307e0a r2f9ffd 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: pcv.cc,v 1.2 2 1999-06-11 12:29:49 mschulze Exp $ */4 /* $Id: pcv.cc,v 1.23 1999-06-11 14:25:59 mschulze Exp $ */ 5 5 /* 6 6 * ABSTRACT: conversion between polys and coef vectors … … 180 180 { 181 181 unsigned y=pcvIndex[i-1][j]; 182 if(y> MAX_COMPONENT-x)182 if(y>(unsigned)~0-x) 183 183 { 184 184 j=pcvMaxDegree; 185 185 i=pVariables; 186 WerrorS(" componentoverflow");186 WerrorS("unsigned overflow"); 187 187 } 188 188 pcvIndex[i][j]=x+=y;
Note: See TracChangeset
for help on using the changeset viewer.