Changeset 84d30e in git


Ignore:
Timestamp:
May 16, 2018, 2:28:46 PM (6 years ago)
Author:
Karim Abou Zeid <karim23697@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
3c86bbf9f16c8badc7db37e2dbccf2ebc23da20f
Parents:
3a5dce9201841bbdc89a3a0b0915526cc8bf33ab
Message:
Reset p_Mult_q.cc to the spielwiese version
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/operations/p_Mult_q.cc

    r3a5dce r84d30e  
    202202  poly res = pp_Mult_mm(p,q,r);     // holds initially q1*p
    203203  poly qq = pNext(q);               // we iter of this
    204   poly qn = r->p_Procs->pp_mm_Mult(qq, p,r);    // holds p1*qi
     204  poly qn = pp_Mult_mm(qq, p,r);    // holds p1*qi
    205205  poly pp = pNext(p);               // used for Lm(qq)*pp
    206206  poly rr = res;                    // last monom which is surely not NULL
     
    227227  Work: // compute res + Lm(qq)*pp
    228228  if (rn == NULL)
    229     pNext(rr) = r->p_Procs->pp_mm_Mult(pp, qq, r);
     229    pNext(rr) = pp_Mult_mm(pp, qq, r);
    230230  else
    231231  {
Note: See TracChangeset for help on using the changeset viewer.