Changeset f7aa4c7 in git


Ignore:
Timestamp:
Sep 8, 2011, 9:14:21 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '52dcfddee5ec87d404d5e0fb44f2d627608208f1')
Children:
e044528a25b043110c93faf0fa114a2a7934310c
Parents:
d84a4d17668e4e3415c4e0d965053268a0e162f0
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-08 21:14:21+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:37+01:00
Message:
CHG: pHomogen & pIsHomogeneous -> p_Homogen & p_IsHomogeneous + currRing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    rd84a4d rf7aa4c7  
    22922292  pLmDelete(p);
    22932293  if (d==1)
    2294     res->data = (char *)pHomogen((poly)u->Data(),i);
     2294    res->data = (char *)p_Homogen((poly)u->Data(), i, currRing);
    22952295  else
    22962296    WerrorS("variable must have weight 1");
     
    55975597  pLmDelete(p);
    55985598  if (d==1)
    5599     res->data = (char *)pHomogen((poly)u->Data(),i);
     5599    res->data = (char *)p_Homogen((poly)u->Data(), i, currRing);
    56005600  else
    56015601    WerrorS("variable must have weight 1");
  • numeric/mpr_inout.cc

    rd84a4d rf7aa4c7  
    127127    if ( pIsConstant(p) ) state= mprHasOne;
    128128    else
    129     if ( (mtype == uResultant::denseResMat) && !pIsHomogeneous(p) )
     129    if ( (mtype == uResultant::denseResMat) && !p_IsHomogeneous(p, currRing) )
    130130      state=mprNotHomog;
    131131  }
Note: See TracChangeset for help on using the changeset viewer.