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

数学计算

开发平台:

Unix_Linux

  1. /* Old function entrypoints retained for binary compatibility.
  2. Copyright 2000, 2001 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include <stdio.h>
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. /* mpn_divexact_by3 was a function in gmp 3.0.1, but as of gmp 3.1 it's a
  18.    macro calling mpn_divexact_by3c.  */
  19. mp_limb_t
  20. __MPN (divexact_by3) (mp_ptr dst, mp_srcptr src, mp_size_t size)
  21. {
  22.   return mpn_divexact_by3 (dst, src, size);
  23. }
  24. /* mpn_divmod_1 was a function in gmp 3.0.1 and earlier, but marked obsolete
  25.    in both gmp 2 and 3.  As of gmp 3.1 it's a macro calling mpn_divrem_1. */
  26. mp_limb_t
  27. __MPN (divmod_1) (mp_ptr dst, mp_srcptr src, mp_size_t size, mp_limb_t divisor)
  28. {
  29.   return mpn_divmod_1 (dst, src, size, divisor);
  30. }
  31. /* mpz_legendre was a separate function in gmp 3.1.1 and earlier, but as of
  32.    4.0 it's a #define alias for mpz_jacobi.  */
  33. int
  34. __gmpz_legendre (mpz_srcptr a, mpz_srcptr b)
  35. {
  36.   return mpz_jacobi (a, b);
  37. }