Changeset 1b88d5 in git


Ignore:
Timestamp:
Feb 6, 2013, 9:30:38 PM (11 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
a08be436658395e89121601266e853db4d7451cb
Parents:
420a178af717f1ce8813f8cf9207c938d4fd511d
git-author:
Martin Lee <martinlee84@web.de>2013-02-06 21:30:38+01:00
git-committer:
Martin Lee <martinlee84@web.de>2013-02-18 15:15:25+01:00
Message:
chg: make sure things divide without remainder
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/facFqFactorize.cc

    r420a178 r1b88d5  
    17891789      CFListIterator iter= result;
    17901790      iter++;
     1791      CanonicalForm quot;
    17911792      for (;iter.hasItem(); iter++, i++)
    17921793      {
     
    18011802              swap= swap (iter2.getItem(), count);
    18021803          }
    1803           i.getItem() /= swap;
     1804          if (fdivides (swap, i.getItem(), quot))
     1805            i.getItem()= quot;
    18041806        }
    18051807      }
     
    18271829                    swap= swap (iter2.getItem(), count);
    18281830                }
    1829                 i.getItem() /= swap;
     1831                if (fdivides (swap, i.getItem(), quot))
     1832                  i.getItem()= quot;
    18301833              }
    18311834            }
Note: See TracChangeset for help on using the changeset viewer.