gmpstat.h
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* gmpstat.h */
  2. /*
  3. Copyright 1999 Free Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. /* This file requires the following header files: gmp.h */
  16. #ifndef __GMPSTAT_H__
  17. #define __GMPSTAT_H__
  18. /* Global debug flag.  FIXME: Remove. */
  19. extern int g_debug;
  20. #define DEBUG_1 0
  21. #define DEBUG_2 1
  22. /* Max number of dimensions in spectral test.  FIXME: Makw dynamic. */
  23. #define GMP_SPECT_MAXT 10
  24. void
  25. mpf_freqt (mpf_t Kp,
  26.    mpf_t Km,
  27.    mpf_t X[],
  28.    const unsigned long int n);
  29. unsigned long int
  30. mpz_freqt (mpf_t V,
  31.    mpz_t X[],
  32.    unsigned int imax,
  33.    const unsigned long int n);
  34. /* Low level functions. */
  35. void
  36. ks (mpf_t Kp,
  37.     mpf_t Km,
  38.     mpf_t X[],
  39.     void (P) (mpf_t, mpf_t),
  40.     const unsigned long int n);
  41. void
  42. ks_table (mpf_t p, mpf_t val, const unsigned int n);
  43. void
  44. x2_table (double t[],
  45.   unsigned int v);
  46. void
  47. spectral_test (mpf_t rop[], unsigned int T, mpz_t a, mpz_t m);
  48. void
  49. vz_dot (mpz_t rop, mpz_t V1[], mpz_t V2[], unsigned int n);
  50. void
  51. f_floor (mpf_t rop, mpf_t op);
  52. void
  53. merit (mpf_t rop, unsigned int t, mpf_t v, mpz_t m);
  54. double
  55. merit_u (unsigned int t, mpf_t v, mpz_t m);
  56. /* From separate source files: */
  57. void zdiv_round (mpz_t rop, mpz_t n, mpz_t d);
  58. #endif /* !__GMPSTAT_H__ */