Ignore:
Timestamp:
Aug 8, 2012, 9:14:00 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
59f97ce570eed69fcbcb184bbee98a548d1e0a03
Parents:
8ee8872586f6afb3a56799c3ea783d6675f18263
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-08-08 21:14:00+02:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-05-07 04:41:42+02:00
Message:
Added DebugPrinting for numbers

Note/Update: StringUpdate => StringEnd
File:
1 edited

Legend:

Unmodified
Added
Removed
  • dyn_modules/syzextra/mod_main.cc

    r8ee887 r084393  
    249249  }
    250250
     251  if( h->Typ() == NUMBER_CMD)
     252  {
     253    number n = (number)h->Data();
     254
     255    const ring r = currRing;
     256
     257#ifdef LDEBUG
     258    r->cf->cfDBTest(n,__FILE__,__LINE__,r->cf);
     259#endif
     260
     261    StringSetS("");
     262    n_Write(n, r->cf);
     263    PrintS(StringEndS());
     264    PrintLn();
     265
     266    return FALSE;
     267  }
     268 
    251269  if( h->Typ() == RING_CMD)
    252270  {
Note: See TracChangeset for help on using the changeset viewer.