Changeset bb68f9 in git
- Timestamp:
- May 19, 1998, 11:03:55 PM (25 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- f0ed31c25c00fe9230553add9ea28ed596895488
- Parents:
- 9418af785c198e32f39c01c1e315f0c4cd1142e5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/intvec.cc
r9418af rbb68f9 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: intvec.cc,v 1. 7 1998-04-07 17:51:50 SingularExp $ */4 /* $Id: intvec.cc,v 1.8 1998-05-19 21:03:55 obachman Exp $ */ 5 5 /* 6 6 * ABSTRACT: class intvec: lists/vectors of integers … … 82 82 if ((col == 1)&&(mat!=INTMAT_CMD)) 83 83 { 84 for (int i=0; i<row; i++) 85 { 86 StringAppend("%d%c",v[i],i<row-1 ? ',' : ' '); 84 for (int i=0; i<row-1; i++) 85 { 86 StringAppend("%d,",v[i]); 87 } 88 if (i<row) 89 { 90 StringAppend("%d",v[i]); 87 91 } 88 92 }
Note: See TracChangeset
for help on using the changeset viewer.