Changeset df31a3 in git


Ignore:
Timestamp:
Nov 1, 2014, 4:18:30 PM (9 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
fc10aa361b5c87a84278d475a8676f2b7207ce76
Parents:
24119a4fd3a8a8cdd59eaff70f0402e3e059be3a
Message:
fix: incomplete factorization in some random cases
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/facFqFactorize.cc

    r24119a4 rdf31a3  
    24432443          g= prod (T);
    24442444          T.removeFirst();
    2445           result.append (g/myContent (g));
     2445          g /= myContent (g);
    24462446          g /= Lc (g);
    24472447          appendTestMapDown (result, g, info, source, dest);
     
    25042504    {
    25052505      delete [] v;
    2506       appendTestMapDown (result, buf/myContent(buf), info, source, dest);
     2506      buf /= myContent (buf);
     2507      buf /= Lc (buf);
     2508      appendTestMapDown (result, buf, info, source, dest);
    25072509      return result;
    25082510    }
     
    25122514  }
    25132515  if (T.length() < 2*s)
    2514     appendMapDown (result, F/myContent(F), info, source, dest);
     2516  {
     2517    buf= F/myContent (F);
     2518    buf /= Lc (buf);
     2519    appendMapDown (result, buf, info, source, dest);
     2520  }
    25152521
    25162522  delete [] v;
Note: See TracChangeset for help on using the changeset viewer.