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

数学计算

开发平台:

Unix_Linux

  1. /* Check mp_bases values.
  2. Copyright 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 "longlong.h"
  19. #include "tests.h"
  20. int
  21. main (int argc, char *argv[])
  22. {
  23.   mp_limb_t  want_bb, want_bb_inv;
  24.   int        base, want_chars_per_limb;
  25.   want_chars_per_limb = refmpn_chars_per_limb (10);
  26.   if (MP_BASES_CHARS_PER_LIMB_10 != want_chars_per_limb)
  27.     {
  28.       printf ("MP_BASES_CHARS_PER_LIMB_10 wrongn");
  29.       abort ();
  30.     }
  31.   want_bb = refmpn_big_base (10);
  32.   if (MP_BASES_BIG_BASE_10 != want_bb)
  33.     {
  34.       printf ("MP_BASES_BIG_BASE_10 wrongn");
  35.       abort ();
  36.     }
  37.   want_bb_inv = refmpn_invert_limb
  38.     (want_bb << refmpn_count_leading_zeros (want_bb));
  39.   if (MP_BASES_BIG_BASE_INVERTED_10 != want_bb_inv)
  40.     {
  41.       printf ("MP_BASES_BIG_BASE_INVERTED_10 wrongn");
  42.       abort ();
  43.     }
  44.   if (MP_BASES_NORMALIZATION_STEPS_10
  45.       != refmpn_count_leading_zeros (MP_BASES_BIG_BASE_10))
  46.     {
  47.       printf ("MP_BASES_NORMALIZATION_STEPS_10 wrongn");
  48.       abort ();
  49.     }
  50.   for (base = 2; base < numberof (mp_bases); base++)
  51.     {
  52.       want_chars_per_limb = refmpn_chars_per_limb (base);
  53.       if (mp_bases[base].chars_per_limb != want_chars_per_limb)
  54.         {
  55.           printf ("mp_bases[%d].chars_per_limb wrongn", base);
  56.           printf ("  got  %dn", mp_bases[base].chars_per_limb);
  57.           printf ("  want %dn", want_chars_per_limb);
  58.           abort ();
  59.         }
  60.       if (POW2_P (base))
  61.         {
  62.           want_bb = refmpn_count_trailing_zeros ((mp_limb_t) base);
  63.           if (mp_bases[base].big_base != want_bb)
  64.             {
  65.               printf ("mp_bases[%d].big_base (log2 of base) wrongn", base);
  66.               abort ();
  67.             }
  68.         }
  69.       else
  70.         {
  71.           want_bb = refmpn_big_base (base);
  72.           if (mp_bases[base].big_base != want_bb)
  73.             {
  74.               printf ("mp_bases[%d].big_base wrongn", base);
  75.               abort ();
  76.             }
  77. #if USE_PREINV_DIVREM_1
  78.           want_bb_inv = refmpn_invert_limb
  79.             (want_bb << refmpn_count_leading_zeros (want_bb));
  80.           if (mp_bases[base].big_base_inverted != want_bb_inv)
  81.             {
  82.               printf ("mp_bases[%d].big_base_inverted wrongn", base);
  83.               abort ();
  84.             }
  85. #endif
  86.         }
  87.     }
  88.   exit (0);
  89. }