Changeset f29ab6 in git


Ignore:
Timestamp:
Sep 9, 2011, 7:46:26 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
6bcd03666caa3b8ab756699b67b73bff50821c70
Parents:
715936e3887b6c8b379d0482bf5e4ad885b132ee
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-09 19:46:26+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:40+01:00
Message:
FIX: use p_DebugPrint instead of pDebugPrint + ring
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r715936 rf29ab6  
    24072407        if(strcmp(sys_cmd,"p")==0)
    24082408        {
    2409           pDebugPrint((poly)h->Data());
     2409          p_DebugPrint((poly)h->Data(), currRing);
    24102410          return FALSE;
    24112411        }
  • kernel/kstd2.cc

    r715936 rf29ab6  
    11391139#ifdef KDEBUG
    11401140#if MYTEST
    1141       PrintS("New S: "); pDebugPrint(strat->P.p); PrintLn();
     1141      PrintS("New S: "); p_DebugPrint(strat->P.p, currRing); PrintLn();
    11421142#endif /* MYTEST */
    11431143#endif /* KDEBUG */
     
    11651165      if (TEST_OPT_DEBUG){PrintS("new s:");strat->P.wrp();PrintLn();}
    11661166#if MYTEST
    1167       PrintS("New (reduced) S: "); pDebugPrint(strat->P.p); PrintLn();
     1167      PrintS("New (reduced) S: "); p_DebugPrint(strat->P.p, currRing); PrintLn();
    11681168#endif /* MYTEST */
    11691169#endif /* KDEBUG */
  • libpolys/polys/monomials/ring.h

    r715936 rf29ab6  
    718718#ifdef RDEBUG
    719719void rDebugPrint(ring r);
    720 void pDebugPrint(poly p);
     720// void pDebugPrint(poly p);
    721721void p_DebugPrint(poly p, const ring r);
    722722#endif
Note: See TracChangeset for help on using the changeset viewer.