Changeset 066b2f7 in git for libpolys


Ignore:
Timestamp:
Feb 11, 2013, 7:04:54 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
af6ba3f929c9985b0ca72e5dd515335e6d734f7e
Parents:
0366c4ff1082c90f816f09f5ae8eef3e5e3c5e28
Message:
Fixing the use of pTest in libpolys (use p_Test(.., RING) instead)
Location:
libpolys/polys
Files:
2 edited

Legend:

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

    r0366c4 r066b2f7  
    143143  }
    144144  res_p=pReverse(res_p);
    145   pTest(res_p);
     145  p_Test(res_p, R);
    146146  return res_p;
    147147}
  • libpolys/polys/sparsmat.cc

    r0366c4 r066b2f7  
    16661666//#define X_MAS
    16671667#ifdef X_MAS
    1668 
    1669 /*
    1670 *  returns the part of (a*b)/exp(lead(c)) with nonegative exponents
    1671 */
     1668// Note: the following in not addapted to SW :(
     1669/*
     1670///  returns the part of (a*b)/exp(lead(c)) with nonegative exponents
    16721671poly smMultDiv(poly a, poly b, const poly c)
    16731672{
    16741673  poly pa, e, res, r;
    1675   BOOLEAN lead;\
     1674  BOOLEAN lead;
    16761675  int la, lb, lr;
    16771676
     
    18031802  return res;
    18041803}
    1805 
     1804*/
    18061805#else
    18071806
Note: See TracChangeset for help on using the changeset viewer.