Changeset a631cdc in git
- Timestamp:
- Aug 16, 2019, 1:53:08 PM (4 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- c05547ab0c38b37057f7936de29b0c7c085da812
- Parents:
- 40b65a33b8f97714b624e53cd7ece1518afa831b
- Location:
- libpolys/polys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/clapsing.cc
r40b65a3 ra631cdc 602 602 if (!convSingRFlintR(ctx,r)) 603 603 { 604 res = Flint_Divide_MP(f, pLength(f),g,pLength(g),ctx,r);604 res = Flint_Divide_MP(f,0,g,0,ctx,r); 605 605 if (res != NULL) 606 606 return res; … … 613 613 if (!convSingRFlintR(ctx,r)) 614 614 { 615 res = Flint_Divide_MP(f, pLength(f),g,pLength(g),ctx,r);615 res = Flint_Divide_MP(f,0,g,0,ctx,r); 616 616 if (res != NULL) 617 617 return res; -
libpolys/polys/flint_mpoly.cc
r40b65a3 ra631cdc 63 63 /******** polynomial conversion ***********/ 64 64 65 #if 165 #if HAVE_OMALLOC 66 66 // memory allocation is not thread safe; singular polynomials must be constructed in serial 67 67
Note: See TracChangeset
for help on using the changeset viewer.