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

数学计算

开发平台:

Unix_Linux

  1. /* Generate Fibonacci table data.
  2. Copyright 2001, 2002, 2004 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 "dumbmp.c"
  16. mpz_t  *f;
  17. int    fnum, fib_limit, luc_limit;
  18. void
  19. generate (int numb_bits)
  20. {
  21.   mpz_t  limit, l;
  22.   int    falloc, i;
  23.   mpz_init_set_ui (limit, 1L);
  24.   mpz_mul_2exp (limit, limit, numb_bits);
  25.   /* fib(2n) > 2^n, so use 2n as a limit for the table size */
  26.   falloc = 2 * numb_bits;
  27.   f = (mpz_t *) xmalloc (falloc * sizeof (*f));
  28.   mpz_init_set_ui (f[0], 1L);  /* F[-1] */
  29.   mpz_init_set_ui (f[1], 0L);  /* F[0] */
  30.   mpz_init (l);
  31.   for (i = 2; ; i++)
  32.     {
  33.       ASSERT (i < falloc);
  34.       /* F[i] = F[i-1] + F[i-2] */
  35.       mpz_init (f[i]);
  36.       mpz_add (f[i], f[i-1], f[i-2]);
  37.       if (mpz_cmp (f[i], limit) >= 0)
  38.         break;
  39.       fnum = i+1;
  40.       fib_limit = i-1;
  41.       /* L[i] = F[i]+2*F[i-1] */
  42.       mpz_add (l, f[i], f[i-1]);
  43.       mpz_add (l, l, f[i-1]);
  44.       if (mpz_cmp (l, limit) < 0)
  45.         luc_limit = i-1;
  46.     }
  47.   mpz_clear (limit);
  48. }
  49. void
  50. header (int numb_bits)
  51. {
  52.   printf ("/* This file generated by gen-fib.c - DO NOT EDIT. */n");
  53.   printf ("n");
  54.   printf ("#if GMP_NUMB_BITS != %dn", numb_bits);
  55.   printf ("Error, error, this data is for %d bitsn", numb_bits);
  56.   printf ("#endifn");
  57.   printf ("n");
  58.   printf ("#define FIB_TABLE_LIMIT         %dn", fib_limit);
  59.   printf ("#define FIB_TABLE_LUCNUM_LIMIT  %dn", luc_limit);
  60. }
  61. void
  62. table (int numb_bits)
  63. {
  64.   int  i;
  65.   printf ("/* This file generated by gen-fib.c - DO NOT EDIT. */n");
  66.   printf ("n");
  67.   printf ("#include "gmp.h"n");
  68.   printf ("#include "gmp-impl.h"n");
  69.   printf ("n");
  70.   printf ("#if GMP_NUMB_BITS != %dn", numb_bits);
  71.   printf ("Error, error, this data is for %d bitsn", numb_bits);
  72.   printf ("#endifn");
  73.   printf ("n");
  74.   printf ("const mp_limb_tn");
  75.   printf ("__gmp_fib_table[FIB_TABLE_LIMIT+2] = {n");
  76.   for (i = 0; i < fnum; i++)
  77.     {
  78.       printf ("  CNST_LIMB (0x");
  79.       mpz_out_str (stdout, 16, f[i]);
  80.       printf ("),  /* %d */n", i-1);
  81.     }
  82.   printf ("};n");
  83. }
  84. int
  85. main (int argc, char *argv[])
  86. {
  87.   int  limb_bits, nail_bits, numb_bits;
  88.   if (argc != 4)
  89.     {
  90.       fprintf (stderr, "Usage: gen-bases <header|table> <limbbits> <nailbits>n");
  91.       exit (1);
  92.     }
  93.   limb_bits = atoi (argv[2]);
  94.   nail_bits = atoi (argv[3]);
  95.   if (limb_bits <= 0
  96.       || nail_bits < 0
  97.       || nail_bits >= limb_bits)
  98.     {
  99.       fprintf (stderr, "Invalid limb/nail bits: %d %dn",
  100.                limb_bits, nail_bits);
  101.       exit (1);
  102.     }
  103.   numb_bits = limb_bits - nail_bits;
  104.   generate (numb_bits);
  105.   if (strcmp (argv[1], "header") == 0)
  106.     header (numb_bits);
  107.   else if (strcmp (argv[1], "table") == 0)
  108.     table (numb_bits);
  109.   else
  110.     {
  111.       fprintf (stderr, "Invalid header/table choice: %sn", argv[1]);
  112.       exit (1);
  113.     }
  114.   return 0;
  115. }