Changeset 28f164 in git
- Timestamp:
- Feb 21, 2009, 8:15:55 PM (14 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 4732f82312538109bdce424060412c45a2b85dc6
- Parents:
- a794e7f15c7e36410e1311fcc983b20a6404c7b5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/tgbgauss.cc
ra794e7 r28f164 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: tgbgauss.cc,v 1. 8 2006-08-21 17:08:47Singular Exp $ */4 /* $Id: tgbgauss.cc,v 1.9 2009-02-21 19:15:55 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: gauss implementation for F4 … … 501 501 for(i=0;i<rows;i++) 502 502 { 503 Print ("(");503 PrintS("("); 504 504 for(j=0;j<columns;j++) 505 505 { 506 506 StringSetS(""); 507 507 n_Write(n[i][j],currRing); 508 Print (StringAppendS(""));509 Print ("\t");510 } 511 Print (")\n");508 PrintS(StringAppendS("")); 509 PrintS("\t"); 510 } 511 PrintS(")\n"); 512 512 } 513 513 } … … 697 697 int i; 698 698 int j; 699 Print ("\n");699 PrintLn(); 700 700 for(i=0;i<rows;i++) 701 701 { 702 Print ("(");702 PrintS("("); 703 703 for(j=0;j<columns;j++) 704 704 { … … 706 706 number n=get(i,j); 707 707 n_Write(n,currRing); 708 Print (StringAppendS(""));709 Print ("\t");710 } 711 Print (")\n");708 PrintS(StringAppendS("")); 709 PrintS("\t"); 710 } 711 PrintS(")\n"); 712 712 } 713 713 }
Note: See TracChangeset
for help on using the changeset viewer.