Changeset 8d8fef in git for factory/facMul.cc


Ignore:
Timestamp:
Jul 29, 2019, 11:36:09 PM (5 years ago)
Author:
Murray Heymann <heymann.murray@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
feed60bef09898f675e0f8605ed0ac0eaa8bed5a
Parents:
da1ec3de158a4f05384b9a83be86fc4c1942ec5fc1b9ababa50e8059dd847da0957f50aea901e6a8
Message:
Merge branch 'machine_learning' of github.com:MHeymann/Sources into machine_learning
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/facMul.cc

    rda1ec3 r8d8fef  
    607607  ASSERT (F.isUnivariate() && G.isUnivariate(), "expected univariate polys");
    608608  ASSERT (F.level() == G.level(), "expected polys of same level");
     609#if (!defined(HAVE_FLINT) ||  __FLINT_RELEASE < 20400)
    609610  if (fac_NTL_char != getCharacteristic())
    610611  {
     
    612613    zz_p::init (getCharacteristic());
    613614  }
     615#endif
    614616  Variable alpha;
    615617  CanonicalForm result;
     
    788790  ASSERT (F.isUnivariate() && G.isUnivariate(), "expected univariate polys");
    789791  ASSERT (F.level() == G.level(), "expected polys of same level");
     792#if (!defined(HAVE_FLINT) ||  __FLINT_RELEASE < 20400)
    790793  if (fac_NTL_char != getCharacteristic())
    791794  {
     
    793796    zz_p::init (getCharacteristic());
    794797  }
     798#endif
    795799  Variable alpha;
    796800  CanonicalForm result;
     
    10491053  ASSERT (F.isUnivariate() && G.isUnivariate(), "expected univariate polys");
    10501054  ASSERT (F.level() == G.level(), "expected polys of same level");
     1055#if (!defined(HAVE_FLINT) ||  __FLINT_RELEASE < 20400)
    10511056  if (fac_NTL_char != getCharacteristic())
    10521057  {
     
    10541059    zz_p::init (getCharacteristic());
    10551060  }
     1061#endif
    10561062  Variable alpha;
    10571063  CanonicalForm result;
     
    36423648  if (p > 0)
    36433649  {
     3650#if (!defined(HAVE_FLINT) ||  __FLINT_RELEASE < 20400)
    36443651    if (fac_NTL_char != p)
    36453652    {
     
    36473654      zz_p::init (p);
    36483655    }
     3656#endif
    36493657    Variable alpha;
    36503658    if (hasFirstAlgVar (A, alpha) || hasFirstAlgVar (B, alpha))
Note: See TracChangeset for help on using the changeset viewer.