Changeset 3064c8 in git


Ignore:
Timestamp:
Dec 9, 2016, 10:36:56 AM (7 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
ddc29819eddcd2695a25cb7bff97f352481a3312
Parents:
0ee0b4397b4999ba8b6b6a80b90142d05c757c02
Message:
fix: option(contentSB) for monomials
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/p_polys.cc

    r0ee0b4 r3064c8  
    28812881  if( pNext(p) == NULL )
    28822882  {
    2883     c=n_Invers(pGetCoeff(p), C);
    2884     p_SetCoeff(p, n_Init(1, C), r);
     2883    if(!TEST_OPT_CONTENTSB)
     2884    {
     2885      c=n_Invers(pGetCoeff(p), C);
     2886      p_SetCoeff(p, n_Init(1, C), r);
     2887    }
     2888    else
     2889    {
     2890      c=n_Init(1,C);
     2891    }
    28852892
    28862893    assume( n_GreaterZero(pGetCoeff(ph),C) );
Note: See TracChangeset for help on using the changeset viewer.