Changeset 689733 in git for kernel/ring.cc
- Timestamp:
- Jun 23, 2009, 10:07:11 AM (14 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- ae51772364a45a7d84beed113717c0c6f320de8c
- Parents:
- 13bb32cb413d6ce85098f26c34acf917ce0c005c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/ring.cc
r13bb32 r689733 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.12 0 2009-06-04 12:43:27Singular Exp $ */4 /* $Id: ring.cc,v 1.121 2009-06-23 08:07:11 Singular Exp $ */ 5 5 6 6 /* … … 364 364 ||(r->order[l] == ringorder_aa)) 365 365 { 366 PrintS("\n// : names 366 PrintS("\n// : names "); 367 367 for (i = r->block0[l]-1; i<r->block1[l]; i++) 368 368 { 369 369 nlen = strlen(r->names[i]); 370 Print S(r->names[i]);370 Print(" %s",r->names[i]); 371 371 } 372 372 } … … 384 384 j+=i) 385 385 { 386 PrintS("\n// : weights 386 PrintS("\n// : weights "); 387 387 for (i = 0; i<=r->block1[l]-r->block0[l]; i++) 388 388 { … … 391 391 int64 *w=(int64 *)r->wvhdl[l]; 392 392 #if SIZEOF_LONG == 4 393 Print(" %*lld" ,nlen,w[i+j],i+j);393 Print(" %*lld" ,nlen,w[i+j],i+j); 394 394 #else 395 Print(" %*ld" ,nlen,w[i+j],i+j);395 Print(" %*ld" ,nlen,w[i+j],i+j); 396 396 #endif 397 397 } 398 398 else 399 Print(" %*d" ,nlen,r->wvhdl[l][i+j],i+j);399 Print(" %*d" ,nlen,r->wvhdl[l][i+j],i+j); 400 400 } 401 401 if (r->order[l]!=ringorder_M) break;
Note: See TracChangeset
for help on using the changeset viewer.