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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_cmp(u,v) -- Compare U, V.  Return positive, zero, or negative
  2.    based on if U > V, U == V, or U < V.
  3. Copyright 1991, 1993, 1994, 1996, 2001, 2002 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. #ifdef BERKELEY_MP
  16. #include "mp.h"
  17. #endif
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. int
  21. #ifdef BERKELEY_MP
  22. mcmp (mpz_srcptr u, mpz_srcptr v)
  23. #else
  24. mpz_cmp (mpz_srcptr u, mpz_srcptr v)
  25. #endif
  26. {
  27.   mp_size_t  usize, vsize, dsize, asize;
  28.   mp_srcptr  up, vp;
  29.   int        cmp;
  30.   usize = SIZ(u);
  31.   vsize = SIZ(v);
  32.   dsize = usize - vsize;
  33.   if (dsize != 0)
  34.     return dsize;
  35.   asize = ABS (usize);
  36.   up = PTR(u);
  37.   vp = PTR(v);
  38.   MPN_CMP (cmp, up, vp, asize);
  39.   return (usize >= 0 ? cmp : -cmp);
  40. }