Changeset 3172b40 in git
- Timestamp:
- May 20, 2008, 5:30:00 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 6242bb3f267a5cd815ebdb802ba28ca040bc37c5
- Parents:
- 672e05dbbccdbb86d350ae5b44e723949901a6ba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kutil.cc
r672e05 r3172b40 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1. 89 2008-04-04 10:30:09Singular Exp $ */4 /* $Id: kutil.cc,v 1.90 2008-05-20 15:30:00 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 668 668 if (i >= 0 && T->pLength != 0 && T->pLength != pLength(p)) 669 669 { 670 int l=T->pLength; 671 T->pLength=pLength(p); 670 672 return dReportError("%c[%d] pLength error: has %d, specified to have %d", 671 TN, i , pLength(p), T->pLength);673 TN, i , pLength(p), l); 672 674 } 673 675 … … 677 679 // FDeg has ir element from T of L set 678 680 if (T->FDeg != T->pFDeg()) 681 { 682 int d=T->FDeg; 683 T->FDeg=T->pFDeg(); 679 684 return dReportError("%c[%d] FDeg error: has %d, specified to have %d", 680 TN, i , T->pFDeg(), T->FDeg); 685 TN, i , T->pFDeg(), d); 686 } 681 687 } 682 688
Note: See TracChangeset
for help on using the changeset viewer.