Changeset 36ff716 in git for libpolys


Ignore:
Timestamp:
Feb 23, 2023, 2:48:38 PM (15 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'c5facdfddea2addfd91babd8b9019161dea4b695')
Children:
bbf65ae44cf00418423373cd812bbfda3cf9ad0a
Parents:
94a18dcf0cf44aa1b4924fece4e5fbdce79a1d44
Message:
Revert "chg: p_Shift: int->long"

This reverts commit 7e0dcb975494701bda4e5a9bc78db2b7518472d5.
Location:
libpolys/polys/monomials
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/p_polys.cc

    r94a18d r36ff716  
    47044704* verschiebt die Indizees der Modulerzeugenden um i
    47054705*/
    4706 void p_Shift (poly * p,long i, const ring r)
     4706void p_Shift (poly * p,int i, const ring r)
    47074707{
    47084708  poly qp1 = *p,qp2 = *p;/*working pointers*/
    4709   long     j = p_MaxComp(*p,r),k = p_MinComp(*p,r);
     4709  int     j = p_MaxComp(*p,r),k = p_MinComp(*p,r);
    47104710
    47114711  if (j+i < 0) return ;
  • libpolys/polys/monomials/p_polys.h

    r94a18d r36ff716  
    21062106/*----------------------------------------------------*/
    21072107/// shifts components of the vector p by i
    2108 void p_Shift (poly * p,long i, const ring r);
     2108void p_Shift (poly * p,int i, const ring r);
    21092109/*----------------------------------------------------*/
    21102110
Note: See TracChangeset for help on using the changeset viewer.