Changeset a631cdc in git


Ignore:
Timestamp:
Aug 16, 2019, 1:53:08 PM (5 years ago)
Author:
tthsqe12 <tthsqe12@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
c05547ab0c38b37057f7936de29b0c7c085da812
Parents:
40b65a33b8f97714b624e53cd7ece1518afa831b
Message:
opt: skip length calculation for division
Location:
libpolys/polys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/clapsing.cc

    r40b65a3 ra631cdc  
    602602    if (!convSingRFlintR(ctx,r))
    603603    {
    604       res = Flint_Divide_MP(f,pLength(f),g,pLength(g),ctx,r);
     604      res = Flint_Divide_MP(f,0,g,0,ctx,r);
    605605      if (res != NULL)
    606606        return res;
     
    613613    if (!convSingRFlintR(ctx,r))
    614614    {
    615       res = Flint_Divide_MP(f,pLength(f),g,pLength(g),ctx,r);
     615      res = Flint_Divide_MP(f,0,g,0,ctx,r);
    616616      if (res != NULL)
    617617        return res;
  • libpolys/polys/flint_mpoly.cc

    r40b65a3 ra631cdc  
    6363/******** polynomial conversion ***********/
    6464
    65 #if 1
     65#if HAVE_OMALLOC
    6666// memory allocation is not thread safe; singular polynomials must be constructed in serial
    6767
Note: See TracChangeset for help on using the changeset viewer.