Changeset 689733 in git for kernel/ring.cc


Ignore:
Timestamp:
Jun 23, 2009, 10:07:11 AM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
ae51772364a45a7d84beed113717c0c6f320de8c
Parents:
13bb32cb413d6ce85098f26c34acf917ce0c005c
Message:
*hannes: space between names


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

Legend:

Unmodified
Added
Removed
  • kernel/ring.cc

    r13bb32 r689733  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.120 2009-06-04 12:43:27 Singular Exp $ */
     4/* $Id: ring.cc,v 1.121 2009-06-23 08:07:11 Singular Exp $ */
    55
    66/*
     
    364364    ||(r->order[l] == ringorder_aa))
    365365    {
    366       PrintS("\n//                  : names    ");
     366      PrintS("\n//                  : names   ");
    367367      for (i = r->block0[l]-1; i<r->block1[l]; i++)
    368368      {
    369369        nlen = strlen(r->names[i]);
    370         PrintS(r->names[i]);
     370        Print(" %s",r->names[i]);
    371371      }
    372372    }
     
    384384           j+=i)
    385385      {
    386         PrintS("\n//                  : weights  ");
     386        PrintS("\n//                  : weights ");
    387387        for (i = 0; i<=r->block1[l]-r->block0[l]; i++)
    388388        {
     
    391391            int64 *w=(int64 *)r->wvhdl[l];
    392392            #if SIZEOF_LONG == 4
    393             Print("%*lld " ,nlen,w[i+j],i+j);
     393            Print(" %*lld" ,nlen,w[i+j],i+j);
    394394            #else
    395             Print("%*ld "  ,nlen,w[i+j],i+j);
     395            Print(" %*ld"  ,nlen,w[i+j],i+j);
    396396            #endif
    397397          }
    398398          else
    399             Print("%*d " ,nlen,r->wvhdl[l][i+j],i+j);
     399            Print(" %*d" ,nlen,r->wvhdl[l][i+j],i+j);
    400400        }
    401401        if (r->order[l]!=ringorder_M) break;
Note: See TracChangeset for help on using the changeset viewer.