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

数学计算

开发平台:

Unix_Linux

  1. /* A test program doing nothing really, just linking to all the BSD MP
  2.    functions that're supposed to exist.
  3. Copyright 2000, 2001 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. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include "mp.h"
  18. int
  19. main (int argc, char *argv[])
  20. {
  21.   MINT *a, *b, *c, *d;
  22.   short  h;
  23.   mp_set_memory_functions (NULL, NULL, NULL);
  24.   a = itom (123);
  25.   b = xtom ("DEADBEEF");
  26.   c = itom (0);
  27.   d = itom (0);
  28.   move (a, b);
  29.   madd (a, b, c);
  30.   msub (a, b, c);
  31.   mult (a, b, c);
  32.   mdiv (b, a, c, d);
  33.   sdiv (b, 2, c, &h);
  34.   msqrt (a, c, d);
  35.   pow (b, a, a, c);
  36.   rpow (a, 3, c);
  37.   gcd (a, b, c);
  38.   mcmp (a, b);
  39.   if (argc > 1)
  40.     {
  41.       min (c);
  42.       mout (a);
  43.     }
  44.   mtox (b);
  45.   mfree(a);
  46.   exit (0);
  47. }