Changeset 6e0750 in git for Singular


Ignore:
Timestamp:
Jun 10, 2010, 2:55:35 PM (14 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
604d8bb038d7aa985d50d55053096e60b087e614
Parents:
a0d9be8bca240bb2c7f44cf7cac23306fc32fcfd
Message:
pCleardenom, pContent

git-svn-id: file:///usr/local/Singular/svn/trunk@12849 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    ra0d9be r6e0750  
    38853885  // CopyD for POLY_CMD and VECTOR_CMD are identical:
    38863886  poly p=(poly)v->CopyD(POLY_CMD);
    3887   if (p!=NULL) pCleardenom(p);
     3887  if (p!=NULL) p_Cleardenom(p, currRing);
    38883888  res->data = (char *)p;
    38893889  return FALSE;
  • Singular/janet.cc

    ra0d9be r6e0750  
    107107  x->root=ksOldSpolyRed(y->root,x->root,NULL);
    108108#endif
    109 //  if (x->root) pContent(x->root);
     109//  if (x->root) p_Content(x->root,currRing);
    110110//  if (x->root) pSimpleContent(x->root,5);
    111111
     
    165165        {
    166166           //pSimpleContent(pp,2);
    167            pContent(pp);
     167           p_Content(pp,currRing);
    168168           count=0;
    169169         //  old_size=nSize(pGetCoeff(pp));
     
    176176   }
    177177
    178   if (done) pContent(p->root);
     178  if (done) p_Content(p->root,currRing);
    179179  //if (done) pSimpleContent(p->root,-1);
    180180  pTest(p->root);
     
    287287  p->changed=1;
    288288
    289   pContent(p->root);
     289  p_Content(p->root,currRing);
    290290  //pSimpleContent(p->root,-1);
    291291  pTest(p->root);
Note: See TracChangeset for help on using the changeset viewer.