Changeset d7e4de5 in git
- Timestamp:
- Feb 3, 2005, 6:52:02 PM (18 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- c82e549553d7a5a664c4c0c72bde79dfb8cc7460
- Parents:
- 88d2e58c77928c255914b18416c0f1345491e4b5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gring.cc
r88d2e5 rd7e4de5 7 7 * Author: levandov (Viktor Levandovsky) 8 8 * Created: 8/00 - 11/00 9 * Version: $Id: gring.cc,v 1.1 7 2004-10-29 18:48:41 levandovExp $9 * Version: $Id: gring.cc,v 1.18 2005-02-03 17:52:02 Singular Exp $ 10 10 *******************************************************************/ 11 11 #include "mod2.h" … … 1801 1801 C = mpCopy(CC); 1802 1802 /* analyze C */ 1803 pN = p_GetCoeff(MATELEM(C,1,2),r); 1803 if (MATELEM(C,1,2)==NULL) 1804 pN=NULL; 1805 else 1806 pN = p_GetCoeff(MATELEM(C,1,2),r); 1804 1807 tmpIsSkewConstant = 1; 1805 1808 for(i=1; i<r->N; i++) … … 1809 1812 qN = p_GetCoeff(MATELEM(C,i,j),r); 1810 1813 if ( qN == NULL ) /* check the consistency: Cij!=0 */ 1814 // find also illegal pN 1811 1815 { 1812 1816 Werror("Incorrect input : matrix of coefficients contains zeros in the upper triangle");
Note: See TracChangeset
for help on using the changeset viewer.