Changeset 001cc15 in git for factory/fac_sqrfree.cc


Ignore:
Timestamp:
Sep 6, 2012, 7:11:17 PM (12 years ago)
Author:
Oleksandr Motsak <malex984@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
0b27942997f2964b33d7b6fb15f97e372d54fc5f
Parents:
24a77fb14c59fc78cc67eb5f6934a45d8862d99e107aac1a78fd9b689a33a864d23b7cfb1caa5bdf
Message:
Merge pull request #179 from mmklee/factory_fix_sw

Factory fix sw
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/fac_sqrfree.cc

    r24a77fb r001cc15  
    160160    CFFList F;
    161161    Variable v = aa.mvar();
     162    CanonicalForm lcinv;
    162163    while ( ! c.degree(v) == 0 )
    163164    {
     
    167168          if (isOn (SW_RATIONAL))
    168169          {
    169             z /= Lc (z);
     170            lcinv= 1/Lc (z);
     171            z *= lcinv;
    170172            z *= bCommonDen (z);
    171173          }
     
    181183      if (isOn (SW_RATIONAL))
    182184      {
    183         w /= Lc (w);
     185        lcinv= 1/Lc (w);
     186        w *= lcinv;
    184187        w *= bCommonDen (w);
    185188      }
Note: See TracChangeset for help on using the changeset viewer.