Changeset 8896c8 in git
- Timestamp:
- Nov 22, 1999, 1:40:03 PM (24 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 825d7918fcbe79616ea2d634e4a55bfefa50b93f
- Parents:
- 7cd4034c2f5efdb9e99ee57a2398e2684861c05a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/sparsmat.cc
r7cd4034 r8896c8 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: sparsmat.cc,v 1.1 8 1999-11-15 17:20:50 obachmanExp $ */4 /* $Id: sparsmat.cc,v 1.19 1999-11-22 12:40:03 Singular Exp $ */ 5 5 6 6 /* … … 190 190 poly smCallDet(ideal I) 191 191 { 192 int r=idRankFreeModule(I);193 if (I->ncols != r)194 { 195 Werror("det of %d x %d module (matrix)", r,I->ncols);192 //int r=idRankFreeModule(I); 193 if (I->ncols != I->rank) 194 { 195 Werror("det of %d x %d module (matrix)",I->rank,I->ncols); 196 196 return NULL; 197 197 }
Note: See TracChangeset
for help on using the changeset viewer.