Changeset c9824e in git
- Timestamp:
- Jul 25, 2019, 11:27:25 AM (4 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 3d5b277e2651a792f826b544d03d7179c438dba0
- Parents:
- e1d7e8a2ccd0e91e13ec17795e58ef965f05f210
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/FLINTconvert.cc
re1d7e8 rc9824e 692 692 convFactoryPFlintMP(F,f,ctx,N); 693 693 convFactoryPFlintMP(G,g,ctx,N); 694 nmod_mpoly_init 3(res,lF+lG,bits+1,ctx);694 nmod_mpoly_init(res,ctx); 695 695 nmod_mpoly_mul(res,f,g,ctx); 696 696 nmod_mpoly_clear(g,ctx); … … 713 713 convFactoryPFlintMP(F,f,ctx,N); 714 714 convFactoryPFlintMP(G,g,ctx,N); 715 fmpq_mpoly_init 3(res,lF+lG,bits+1,ctx);715 fmpq_mpoly_init(res,ctx); 716 716 fmpq_mpoly_mul(res,f,g,ctx); 717 717 fmpq_mpoly_clear(g,ctx); … … 737 737 convFactoryPFlintMP(F,f,ctx,N); 738 738 convFactoryPFlintMP(G,g,ctx,N); 739 nmod_mpoly_init 3(res,lf,bits,ctx);739 nmod_mpoly_init(res,ctx); 740 740 int ok=nmod_mpoly_gcd(res,f,g,ctx); 741 741 nmod_mpoly_clear(g,ctx);
Note: See TracChangeset
for help on using the changeset viewer.