Ignore:
Timestamp:
Sep 24, 2012, 12:41:08 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f224d8590b63be01aff8b548ab4f2f5dea43b095
Parents:
1592b986a21bcaba5633414189a7b08c5cce6213
Message:
chg: removed parameter last from p_*templates
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/templates/p_Minus_mm_Mult_qq__T.cc

    r1592b9 rabe5c8  
    1717 *
    1818 ***************************************************************/
    19 LINKAGE poly p_Minus_mm_Mult_qq__T(poly p, poly m, poly q, int& Shorter, const poly spNoether, const ring r, poly &last)
     19LINKAGE poly p_Minus_mm_Mult_qq__T(poly p, poly m, poly q, int& Shorter, const poly spNoether, const ring r)
    2020{
    2121  p_Test(p, r);
     
    134134  {
    135135    pNext(a) = p;
    136     if (p == NULL) last = a;
    137136  }
    138137  else  // append (- m*q) to result
    139138  {
    140139    pSetCoeff0(m, tneg);
    141     last = a;
    142140    if (spNoether != NULL)
    143141    {
    144142      int ll = 0;
    145       pNext(a) = r->p_Procs->pp_Mult_mm_Noether(q, m, spNoether, ll, r, last);
     143      pNext(a) = r->p_Procs->pp_Mult_mm_Noether(q, m, spNoether, ll, r);
    146144      shorter += ll;
    147145    }
    148146    else
    149147    {
    150       pNext(a) = r->p_Procs->pp_Mult_mm(q, m, r, last);
     148      pNext(a) = r->p_Procs->pp_Mult_mm(q, m, r);
    151149#ifdef HAVE_RINGS
    152150      if (! rField_is_Domain(r))
Note: See TracChangeset for help on using the changeset viewer.