Changeset 63df50e in git
- Timestamp:
- Jun 28, 2020, 1:03:54 PM (3 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 78242cd9e20b3bbe063e29767e95ac64f65545d6
- Parents:
- a7235589fb2e045397d9d6de8846aeccb51f4074
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_map_ext.cc
ra723558 r63df50e 84 84 fq_nmod_poly_factor_init(fac,ctx); 85 85 fq_nmod_poly_roots(fac, mipo2, 0, ctx); 86 // root of first factor:86 // root of first (linear) factor: -absolute Term 87 87 fq_nmod_t r0; 88 88 fq_nmod_init(r0, ctx); 89 89 fq_nmod_poly_get_coeff(r0,fac->poly,0,ctx); 90 fq_nmod_neg(r0, r0, ctx); 90 91 // convert 91 92 CanonicalForm r1=convertFq_nmod_t2FacCF(r0,beta); … … 398 399 fq_nmod_poly_factor_init(fac,ctx); 399 400 fq_nmod_poly_roots(fac, FLINT_beta_mipo, 0, ctx); 400 // root of first factor:401 // root of first (linear) factor: -absolute Term 401 402 fq_nmod_t r0; 402 403 fq_nmod_init(r0, ctx); 403 404 fq_nmod_poly_get_coeff(r0,fac->poly,0,ctx); 405 fq_nmod_neg(r0, r0, ctx); 404 406 // convert 405 407 CanonicalForm r1=convertFq_nmod_t2FacCF(r0,alpha); … … 461 463 fq_nmod_poly_factor_init(fac,ctx); 462 464 fq_nmod_poly_roots(fac, mipo2, 0, ctx); 463 // root of first factor:465 // root of first (linear) factor: -absolute Term 464 466 fq_nmod_t r0; 465 467 fq_nmod_init(r0, ctx); 466 468 fq_nmod_poly_get_coeff(r0,fac->poly,0,ctx); 469 fq_nmod_neg(r0, r0, ctx); 467 470 // convert 468 471 CanonicalForm r1=convertFq_nmod_t2FacCF(r0,beta);
Note: See TracChangeset
for help on using the changeset viewer.