Changeset a0d9be in git for kernel/sca.cc


Ignore:
Timestamp:
Jun 10, 2010, 2:54:59 PM (14 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
6e0750067834212a8910aad022e669ca646b5786
Parents:
407ff05c12f210a6f1d860dac19e7850c61d38ea
Message:
pCleardenom -> p_Cleardenom,
pCleardenom_n -> p_Cleardenom_n,
pContent -> p_Content



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

Legend:

Unmodified
Added
Removed
  • kernel/sca.cc

    r407ff05 ra0d9be  
    834834  poly spoly = p_Add_q (tmp1, tmp2, r); // spoly = spoly(lt(p1), lt(p2)) + m1 * tail(p1), delete tmp1,2
    835835
    836   if (spoly!=NULL) pCleardenom (spoly); // r?
    837 //  if (spoly!=NULL) pContent (spoly); // r?
     836  if (spoly!=NULL) p_Cleardenom (spoly, r);
     837//  if (spoly!=NULL) p_Content (spoly); // r?
    838838
    839839#ifdef PDEBUG
     
    910910  p2 = p_Add_q(p2, T, r);
    911911
    912   if ( p2!=NULL ) pContent(p2); // r?
     912  if ( p2!=NULL ) p_Content(p2,r);
    913913
    914914#ifdef PDEBUG
     
    939939    if (TEST_OPT_INTSTRATEGY)
    940940    {
    941       pCleardenom(h.p);
     941      p_Cleardenom(h.p, currRing);
    942942    }
    943943    else
    944944    {
    945945      pNorm(h.p);
    946       pContent(h.p);
     946      p_Content(h.p,currRing);
    947947    }
    948948
     
    954954      {
    955955//        pCleardenom(h.p);
    956         pContent(h.p);
     956        p_Content(h.p,currRing);
    957957      }
    958958      else
     
    11761176        if (TEST_OPT_INTSTRATEGY)
    11771177        {
    1178 //           h.pCleardenom(); // also does a pContent
    1179           pContent(h.p);
     1178//           h.pCleardenom(); // also does a p_Content
     1179          p_Content(h.p,currRing);
    11801180        }
    11811181        else
     
    17681768
    17691769              if (TEST_OPT_INTSTRATEGY)
    1770                 h.pCleardenom(); // also does a pContent
     1770                h.pCleardenom(); // also does a p_Content
    17711771              else
    17721772                h.pNorm();
     
    19501950        if (TEST_OPT_INTSTRATEGY)
    19511951        {
    1952 //          pContent(h.p);
    1953           h.pCleardenom(); // also does a pContent
     1952//          p_Content(h.p);
     1953          h.pCleardenom(); // also does a p_Content
    19541954        }
    19551955        else
     
    22442244
    22452245              if (TEST_OPT_INTSTRATEGY)
    2246                 h.pCleardenom(); // also does a pContent
     2246                h.pCleardenom(); // also does a p_Content
    22472247              else
    22482248                h.pNorm();
     
    23962396
    23972397        if (TEST_OPT_INTSTRATEGY)
    2398            h.pCleardenom(); // also does a pContent
     2398           h.pCleardenom(); // also does a p_Content
    23992399        else
    24002400          h.pNorm();
Note: See TracChangeset for help on using the changeset viewer.