Changeset fb85f97 in git for Singular/subexpr.cc


Ignore:
Timestamp:
Sep 30, 2011, 11:55:04 AM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9043345b54bd11e757c9df83bdf84b9be0bffab2
Parents:
df34cff872aba396626a72fb448bfd2e215eb54b
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-30 11:55:04+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:51+01:00
Message:
FIX: rings are printed with details only via "print(r); " not via "r; "
CHG: minor cleanup
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/subexpr.cc

    rdf34cff rfb85f97  
    126126        case RING_CMD:
    127127        case QRING_CMD:
     128        {             
    128129          PrintNSpaces(spaces);
    129           rWrite((ring)d);
     130          const ring r = (const ring)d;
     131          rWrite(r, currRing == r);
    130132          break;
     133        }       
    131134        case MATRIX_CMD:
    132135          iiWriteMatrix((matrix)d,n,2, currRing, spaces);
Note: See TracChangeset for help on using the changeset viewer.