Changeset 772cf3b in git


Ignore:
Timestamp:
Feb 27, 2024, 10:03:17 AM (2 months ago)
Author:
Antonio Rojas <arojas@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
e9e0aa925b2a65fc81112de154772be31d68e6a1
Parents:
82fc009ea2b0098c1a4896c841bb70860976bdfc
git-author:
Antonio Rojas <arojas@archlinux.org>2024-02-27 10:03:17+01:00
git-committer:
GitHub <noreply@github.com>2024-02-27 10:03:17+01:00
Message:
Fix build with flint 3.1 (#1209)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cfModGcd.cc

    r82fc00 r772cf3b  
    18071807  convertFacCFMatrix2Fq_nmod_mat_t (FLINTN, ctx, *N);
    18081808  // rank
     1809  #if __FLINT_RELEASE >= 30100
     1810  long rk= fq_nmod_mat_rref (FLINTN,FLINTN,ctx);
     1811  #else
    18091812  long rk= fq_nmod_mat_rref (FLINTN,ctx);
     1813  #endif
    18101814  // clean up
    18111815  fq_nmod_mat_clear (FLINTN,ctx);
     
    19131917  convertFacCFMatrix2Fq_nmod_mat_t (FLINTN, ctx, *N);
    19141918  // rank
     1919  #if __FLINT_RELEASE >= 30100
     1920  long rk= fq_nmod_mat_rref (FLINTN,FLINTN,ctx);
     1921  #else
    19151922  long rk= fq_nmod_mat_rref (FLINTN,ctx);
     1923  #endif
    19161924  #elif defined(HAVE_NTL)
    19171925  int p= getCharacteristic ();
Note: See TracChangeset for help on using the changeset viewer.