neocnt

Number theory using FLINT
git clone git://www.tkruger.se/neocnt.git
Log | Files | Refs | README

hnp.h (321B)


      1 #ifndef _HNP_H_
      2 #define _HNP_H_
      3 
      4 #include <flint.h>
      5 #include <fmpq.h>
      6 #include <fmpz.h>
      7 #include <fmpz_mat.h>
      8 #include <gmp.h>
      9 
     10 int hidden_number_problem(fmpz *res, const slong nres, const fmpz *t,
     11                           const fmpz *a, const slong m, const fmpz_t n,
     12                           const fmpz_t B);
     13 
     14 #endif