Changeset 28f164 in git


Ignore:
Timestamp:
Feb 21, 2009, 8:15:55 PM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
4732f82312538109bdce424060412c45a2b85dc6
Parents:
a794e7f15c7e36410e1311fcc983b20a6404c7b5
Message:
*hannes: PrintS


git-svn-id: file:///usr/local/Singular/svn/trunk@11431 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/tgbgauss.cc

    ra794e7 r28f164  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: tgbgauss.cc,v 1.8 2006-08-21 17:08:47 Singular Exp $ */
     4/* $Id: tgbgauss.cc,v 1.9 2009-02-21 19:15:55 Singular Exp $ */
    55/*
    66* ABSTRACT: gauss implementation for F4
     
    501501  for(i=0;i<rows;i++)
    502502  {
    503     Print("(");
     503    PrintS("(");
    504504    for(j=0;j<columns;j++)
    505505    {
    506506      StringSetS("");
    507507      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");
    512512  }
    513513}
     
    697697  int i;
    698698  int j;
    699   Print("\n");
     699  PrintLn();
    700700  for(i=0;i<rows;i++)
    701701  {
    702     Print("(");
     702    PrintS("(");
    703703    for(j=0;j<columns;j++)
    704704    {
     
    706706      number n=get(i,j);
    707707      n_Write(n,currRing);
    708       Print(StringAppendS(""));
    709       Print("\t");
    710     }
    711     Print(")\n");
     708      PrintS(StringAppendS(""));
     709      PrintS("\t");
     710    }
     711    PrintS(")\n");
    712712  }
    713713}
Note: See TracChangeset for help on using the changeset viewer.