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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_fib_ui and mpz_fib2_ui.
  2. Copyright 2000, 2001, 2002 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 <stdlib.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. #include "tests.h"
  19. /* Usage: t-fib_ui [x|num]
  20.    Run with no arguments, tests goes up to the initial value of "limit"
  21.    below.  With a number argument tests are carried up that far, or with a
  22.    literal "x" tests are continued without limit (this being only meant for
  23.    development purposes).
  24.    The size tests performed are designed to partially replicate what will be
  25.    going on in mpz_fib_ui.  There's plenty of ASSERTs there, but of course
  26.    they're not normally enabled.
  27.    Misfeatures:
  28.    The tests on MPN_FIB2_SIZE are a bit useless, since that macro includes a
  29.    +2 for the internal purposes of mpn_fib2_ui.  It's probably better to
  30.    give mpn_fib2_ui a run with assertion checking enabled.  */
  31. #define MPZ_FIB_SIZE_FLOAT(n) 
  32.   ((mp_size_t) ((n) * 0.6942419 / GMP_NUMB_BITS + 1))
  33. void
  34. check_fib_table (void)
  35. {
  36.   int        i;
  37.   mp_limb_t  want;
  38.   ASSERT_ALWAYS (FIB_TABLE(-1) == 1);
  39.   ASSERT_ALWAYS (FIB_TABLE(0) == 0);
  40.   for (i = 1; i <= FIB_TABLE_LIMIT; i++)
  41.     {
  42.       want = FIB_TABLE(i-1) + FIB_TABLE(i-2);
  43.       if (FIB_TABLE(i) != want)
  44.         {
  45.           printf ("FIB_TABLE(%d) wrongn", i);
  46.           gmp_printf ("  got  %#Nxn", &FIB_TABLE(i), 1);
  47.           gmp_printf ("  want %#Nxn", &want, 1);
  48.           abort ();
  49.         }
  50.     }
  51. }
  52. int
  53. main (int argc, char *argv[])
  54. {
  55.   unsigned long  n;
  56.   unsigned long  limit = 100 * GMP_LIMB_BITS;
  57.   mpz_t          want_fn, want_fn1, got_fn, got_fn1;
  58.   tests_start ();
  59.   mp_trace_base = -16;
  60.   if (argc > 1 && argv[1][0] == 'x')
  61.     limit = ULONG_MAX;
  62.   else if (argc > 1)
  63.     limit = atoi (argv[1]);
  64.   check_fib_table ();
  65.   /* start at n==0 */
  66.   mpz_init_set_ui (want_fn1, 1);  /* F[-1] */
  67.   mpz_init_set_ui (want_fn,  0);  /* F[0]   */
  68.   mpz_init (got_fn);
  69.   mpz_init (got_fn1);
  70.   for (n = 0; n < limit; n++)
  71.     {
  72.       /* check our float formula seems right */
  73.       if (MPZ_FIB_SIZE_FLOAT (n) < SIZ(want_fn))
  74.         {
  75.           printf ("MPZ_FIB_SIZE_FLOAT wrong at n=%lun", n);
  76.           printf ("  MPZ_FIB_SIZE_FLOAT  %ldn", MPZ_FIB_SIZE_FLOAT (n));
  77.           printf ("  SIZ(want_fn)        %dn", SIZ(want_fn));
  78.           abort ();
  79.         }
  80.       /* check MPN_FIB2_SIZE seems right, compared to actual size and
  81.          compared to our float formula */
  82.       if (MPN_FIB2_SIZE (n) < MPZ_FIB_SIZE_FLOAT (n))
  83.         {
  84.           printf ("MPN_FIB2_SIZE wrong at n=%lun", n);
  85.           printf ("  MPN_FIB2_SIZE       %ldn", MPN_FIB2_SIZE (n));
  86.           printf ("  MPZ_FIB_SIZE_FLOAT  %ldn", MPZ_FIB_SIZE_FLOAT (n));
  87.           abort ();
  88.         }
  89.       if (MPN_FIB2_SIZE (n) < SIZ(want_fn))
  90.         {
  91.           printf ("MPN_FIB2_SIZE wrong at n=%lun", n);
  92.           printf ("  MPN_FIB2_SIZE  %ldn", MPN_FIB2_SIZE (n));
  93.           printf ("  SIZ(want_fn)   %dn", SIZ(want_fn));
  94.           abort ();
  95.         }
  96.       mpz_fib2_ui (got_fn, got_fn1, n);
  97.       MPZ_CHECK_FORMAT (got_fn);
  98.       MPZ_CHECK_FORMAT (got_fn1);
  99.       if (mpz_cmp (got_fn, want_fn) != 0 || mpz_cmp (got_fn1, want_fn1) != 0)
  100.         {
  101.           printf ("mpz_fib2_ui(%lu) wrongn", n);
  102.           mpz_trace ("want fn ", want_fn);
  103.           mpz_trace ("got  fn ",  got_fn);
  104.           mpz_trace ("want fn1", want_fn1);
  105.           mpz_trace ("got  fn1",  got_fn1);
  106.           abort ();
  107.         }
  108.       mpz_fib_ui (got_fn, n);
  109.       MPZ_CHECK_FORMAT (got_fn);
  110.       if (mpz_cmp (got_fn, want_fn) != 0)
  111.         {
  112.           printf ("mpz_fib_ui(%lu) wrongn", n);
  113.           mpz_trace ("want fn", want_fn);
  114.           mpz_trace ("got  fn", got_fn);
  115.           abort ();
  116.         }
  117.       mpz_add (want_fn1, want_fn1, want_fn);  /* F[n+1] = F[n] + F[n-1] */
  118.       mpz_swap (want_fn1, want_fn);
  119.     }
  120.   mpz_clear (want_fn);
  121.   mpz_clear (want_fn1);
  122.   mpz_clear (got_fn);
  123.   mpz_clear (got_fn1);
  124.   tests_end ();
  125.   exit (0);
  126. }