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

数学计算

开发平台:

Unix_Linux

  1. /* mpf expression evaluation
  2. Copyright 2000, 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. /* Future: Bitwise "&", "|" and "&" could be done, if desired.  Not sure
  15.    those functions would be much value though.  */
  16. #include <ctype.h>
  17. #include <stdio.h>
  18. #include <string.h>
  19. #include "gmp.h"
  20. #include "expr-impl.h"
  21. /* Change this to "#define TRACE(x) x" to get some traces. */
  22. #define TRACE(x)
  23. static size_t
  24. e_mpf_number (mpf_ptr res, __gmp_const char *e, size_t elen, int base)
  25. {
  26.   char    *edup;
  27.   size_t  i, ret, extra=0;
  28.   int     mant_base, exp_base;
  29.   void    *(*allocate_func) (size_t);
  30.   void    (*free_func) (void *, size_t);
  31.   TRACE (printf ("mpf_number base=%d "%.*s"n", base, (int) elen, e));
  32.   /* mpf_set_str doesn't currently accept 0x for hex in base==0, so do it
  33.      here instead.  FIXME: Would prefer to let mpf_set_str handle this.  */
  34.   if (base == 0 && elen >= 2 && e[0] == '0' && (e[1] == 'x' || e[1] == 'X'))
  35.     {
  36.       base = 16;
  37.       extra = 2;
  38.       e += extra;
  39.       elen -= extra;
  40.     }
  41.   if (base == 0)
  42.     mant_base = 10;
  43.   else if (base < 0)
  44.     mant_base = -base;
  45.   else
  46.     mant_base = base;
  47.   /* exponent in decimal if base is negative */
  48.   if (base < 0)
  49.     exp_base = 10;
  50.   else if (base == 0)
  51.     exp_base = 10;
  52.   else
  53.     exp_base = base;
  54. #define IS_EXPONENT(c) 
  55.   (c == '@' || (base <= 10 && base >= -10 && (e[i] == 'e' || e[i] == 'E')))
  56.   i = 0;
  57.   for (;;)
  58.     {
  59.       if (i >= elen)
  60.         goto parsed;
  61.       if (e[i] == '.')
  62.         break;
  63.       if (IS_EXPONENT (e[i]))
  64.         goto exponent;
  65.       if (! isasciidigit_in_base (e[i], mant_base))
  66.         goto parsed;
  67.       i++;
  68.     }
  69.   /* fraction */
  70.   i++;
  71.   for (;;)
  72.     {
  73.       if (i >= elen)
  74.         goto parsed;
  75.       if (IS_EXPONENT (e[i]))
  76.         goto exponent;
  77.       if (! isasciidigit_in_base (e[i], mant_base))
  78.         goto parsed;
  79.       i++;
  80.     }
  81.  exponent:
  82.   i++;
  83.   if (i >= elen)
  84.     goto parsed;
  85.   if (e[i] == '-')
  86.     i++;
  87.   for (;;)
  88.     {
  89.       if (i >= elen)
  90.         goto parsed;
  91.       if (! isasciidigit_in_base (e[i], exp_base))
  92.         break;
  93.       i++;
  94.     }
  95.  parsed:
  96.   TRACE (printf ("  parsed i=%u "%.*s"n", i, (int) i, e));
  97.   mp_get_memory_functions (&allocate_func, NULL, &free_func);
  98.   edup = (*allocate_func) (i+1);
  99.   memcpy (edup, e, i);
  100.   edup[i] = '';
  101.   if (mpf_set_str (res, edup, base) == 0)
  102.     ret = i + extra;
  103.   else
  104.     ret = 0;
  105.   (*free_func) (edup, i+1);
  106.   return ret;
  107. }
  108. static int
  109. e_mpf_ulong_p (mpf_srcptr f)
  110. {
  111.   return mpf_integer_p (f) && mpf_fits_ulong_p (f);
  112. }
  113. /* Don't want to change the precision of w, can only do an actual swap when
  114.    w and x have the same precision.  */
  115. static void
  116. e_mpf_set_or_swap (mpf_ptr w, mpf_ptr x)
  117. {
  118.   if (mpf_get_prec (w) == mpf_get_prec (x))
  119.     mpf_swap (w, x);
  120.   else
  121.     mpf_set (w, x);
  122. }
  123. int
  124. mpf_expr_a (__gmp_const struct mpexpr_operator_t *table,
  125.             mpf_ptr res, int base, unsigned long prec,
  126.             __gmp_const char *e, size_t elen,
  127.             mpf_srcptr var[26])
  128. {
  129.   struct mpexpr_parse_t  p;
  130.   p.table = table;
  131.   p.res = (mpX_ptr) res;
  132.   p.base = base;
  133.   p.prec = prec;
  134.   p.e = e;
  135.   p.elen = elen;
  136.   p.var = (mpX_srcptr *) var;
  137.   p.mpX_clear       = (mpexpr_fun_one_t)      mpf_clear;
  138.   p.mpX_ulong_p     = (mpexpr_fun_i_unary_t)  e_mpf_ulong_p;
  139.   p.mpX_get_ui      = (mpexpr_fun_get_ui_t)   mpf_get_ui;
  140.   p.mpX_init        = (mpexpr_fun_unary_ui_t) mpf_init2;
  141.   p.mpX_number      = (mpexpr_fun_number_t)   e_mpf_number;
  142.   p.mpX_set         = (mpexpr_fun_unary_t)    mpf_set;
  143.   p.mpX_set_or_swap = (mpexpr_fun_unary_t)    e_mpf_set_or_swap;
  144.   p.mpX_set_si      = (mpexpr_fun_set_si_t)   mpf_set_si;
  145.   p.mpX_swap        = (mpexpr_fun_swap_t)     mpf_swap;
  146.   return mpexpr_evaluate (&p);
  147. }