Changeset cc5a86 in git for factory/FLINTconvert.cc


Ignore:
Timestamp:
Jul 1, 2020, 6:11:40 PM (4 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
ec8f57a61e260db5b7ea8516a342d9551881dcb2
Parents:
2ce3bf354077ca50ab9dbbed78c68d8e279f1297
Message:
fix: order of args.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/FLINTconvert.cc

    r2ce3bf rcc5a86  
    408408
    409409CanonicalForm
    410 convertFq_nmod_t2FacCF (const fq_nmod_t poly, const fq_nmod_ctx_t ctx, const Variable& alpha)
    411 {
    412   nmod_poly_t p;
    413   nmod_poly_init(p,getCharacteristic());
    414   fq_nmod_get_nmod_poly(p,poly,ctx);
    415   CanonicalForm res= convertnmod_poly_t2FacCF (p, alpha);
    416   nmod_poly_clear(p);
    417   return res;
     410convertFq_nmod_t2FacCF (const fq_nmod_t poly, const Variable& alpha, const fq_nmod_ctx_t ctx)
     411{
     412  return convertnmod_poly_t2FacCF (poly, alpha);
    418413}
    419414
Note: See TracChangeset for help on using the changeset viewer.