Changeset 04cda6a in git for factory/facMul.cc


Ignore:
Timestamp:
Jun 20, 2012, 5:15:10 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
0a1c16fac6cc6bd1bdfe33513714ab61ef42f268
Parents:
3ef0a0f54ff30379dd02f696dfdf144d6b523cfb
git-author:
Martin Lee <martinlee84@web.de>2012-06-20 17:15:10+02:00
git-committer:
Martin Lee <martinlee84@web.de>2012-07-31 11:49:39+02:00
Message:
fix: wrong computation of d1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/facMul.cc

    r3ef0a0 r04cda6a  
    13481348                    CanonicalForm& M)
    13491349{
    1350   int d1= tmax (degree (F, 1), degree (G, 1)) + 1;
     1350  int d1= degree (F, 1) + degree (G, 1) + 1;
    13511351  d1 /= 2;
    13521352  d1 += 1;
     
    14171417                    CanonicalForm& M)
    14181418{
    1419   int d1= tmax (degree (F, 1), degree (G, 1)) + 1;
     1419  int d1= degree (F, 1) + degree (G, 1) + 1;
    14201420  d1 /= 2;
    14211421  d1 += 1;
Note: See TracChangeset for help on using the changeset viewer.