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

数学计算

开发平台:

Unix_Linux

  1. /* mpf expression evaluation
  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 <string.h>
  16. #include "gmp.h"
  17. #include "expr-impl.h"
  18. /* Change this to "#define TRACE(x) x" to get some traces. */
  19. #define TRACE(x)
  20. static int
  21. e_mpf_sgn (mpf_srcptr x)
  22. {
  23.   return mpf_sgn (x);
  24. }
  25. static __gmp_const struct mpexpr_operator_t  _mpf_expr_standard_table[] = {
  26.   { "**",  (mpexpr_fun_t) mpf_pow_ui,
  27.     MPEXPR_TYPE_BINARY_UI | MPEXPR_TYPE_RIGHTASSOC,                   220 },
  28.   { "!",   (mpexpr_fun_t) e_mpf_sgn,
  29.     MPEXPR_TYPE_LOGICAL_NOT | MPEXPR_TYPE_PREFIX,                     210 },
  30.   { "-",   (mpexpr_fun_t) mpf_neg,
  31.     MPEXPR_TYPE_UNARY | MPEXPR_TYPE_PREFIX,                           210 },
  32.   { "*",   (mpexpr_fun_t) mpf_mul,           MPEXPR_TYPE_BINARY,      200 },
  33.   { "/",   (mpexpr_fun_t) mpf_div,           MPEXPR_TYPE_BINARY,      200 },
  34.   { "+",   (mpexpr_fun_t) mpf_add,           MPEXPR_TYPE_BINARY,      190 },
  35.   { "-",   (mpexpr_fun_t) mpf_sub,           MPEXPR_TYPE_BINARY,      190 },
  36.   { "<<",  (mpexpr_fun_t) mpf_mul_2exp,      MPEXPR_TYPE_BINARY_UI,   180 },
  37.   { ">>",  (mpexpr_fun_t) mpf_div_2exp,      MPEXPR_TYPE_BINARY_UI,   180 },
  38.   { "<=",  (mpexpr_fun_t) mpf_cmp,           MPEXPR_TYPE_CMP_LE,      170 },
  39.   { "<",   (mpexpr_fun_t) mpf_cmp,           MPEXPR_TYPE_CMP_LT,      170 },
  40.   { ">=",  (mpexpr_fun_t) mpf_cmp,           MPEXPR_TYPE_CMP_GE,      170 },
  41.   { ">",   (mpexpr_fun_t) mpf_cmp,           MPEXPR_TYPE_CMP_GT,      170 },
  42.   { "==",  (mpexpr_fun_t) mpf_cmp,           MPEXPR_TYPE_CMP_EQ,      160 },
  43.   { "!=",  (mpexpr_fun_t) mpf_cmp,           MPEXPR_TYPE_CMP_NE,      160 },
  44.   { "&&",  (mpexpr_fun_t) e_mpf_sgn,         MPEXPR_TYPE_LOGICAL_AND, 120 },
  45.   { "||",  (mpexpr_fun_t) e_mpf_sgn,         MPEXPR_TYPE_LOGICAL_OR,  110 },
  46.   { ":",   NULL,                             MPEXPR_TYPE_COLON,       101 },
  47.   { "?",   (mpexpr_fun_t) e_mpf_sgn,         MPEXPR_TYPE_QUESTION,    100 },
  48.   { ")",   NULL,                             MPEXPR_TYPE_CLOSEPAREN,    4 },
  49.   { "(",   NULL,                             MPEXPR_TYPE_OPENPAREN,     3 },
  50.   { ",",   NULL,                             MPEXPR_TYPE_ARGSEP,        2 },
  51.   { "$",   NULL,                             MPEXPR_TYPE_VARIABLE,      1 },
  52.   { "abs",      (mpexpr_fun_t) mpf_abs,          MPEXPR_TYPE_UNARY        },
  53.   { "ceil",     (mpexpr_fun_t) mpf_ceil,         MPEXPR_TYPE_UNARY        },
  54.   { "cmp",      (mpexpr_fun_t) mpf_cmp,          MPEXPR_TYPE_I_BINARY     },
  55.   { "eq",       (mpexpr_fun_t) mpf_eq,           MPEXPR_TYPE_I_TERNARY_UI },
  56.   { "floor",    (mpexpr_fun_t) mpf_floor,        MPEXPR_TYPE_UNARY        },
  57.   { "integer_p",(mpexpr_fun_t) mpf_integer_p,    MPEXPR_TYPE_I_UNARY      },
  58.   { "max",   (mpexpr_fun_t) mpf_cmp, MPEXPR_TYPE_MAX | MPEXPR_TYPE_PAIRWISE },
  59.   { "min",   (mpexpr_fun_t) mpf_cmp, MPEXPR_TYPE_MIN | MPEXPR_TYPE_PAIRWISE },
  60.   { "reldiff",  (mpexpr_fun_t) mpf_reldiff,      MPEXPR_TYPE_BINARY       },
  61.   { "sgn",      (mpexpr_fun_t) e_mpf_sgn,        MPEXPR_TYPE_I_UNARY      },
  62.   { "sqrt",     (mpexpr_fun_t) mpf_sqrt,         MPEXPR_TYPE_UNARY        },
  63.   { "trunc",    (mpexpr_fun_t) mpf_trunc,        MPEXPR_TYPE_UNARY        },
  64.   { NULL }
  65. };
  66. __gmp_const struct mpexpr_operator_t * __gmp_const mpf_expr_standard_table
  67. = _mpf_expr_standard_table;
  68. int
  69. #if HAVE_STDARG
  70. mpf_expr (mpf_ptr res, int base, __gmp_const char *e, ...)
  71. #else
  72. mpf_expr (va_alist)
  73.      va_dcl
  74. #endif
  75. {
  76.   mpf_srcptr  var[MPEXPR_VARIABLES];
  77.   va_list     ap;
  78.   int         ret;
  79. #if HAVE_STDARG
  80.   va_start (ap, e);
  81. #else
  82.   mpf_ptr           res;
  83.   int               base;
  84.   __gmp_const char  *e;
  85.   va_start (ap);
  86.   res  = va_arg (ap, mpf_ptr);
  87.   base = va_arg (ap, int);
  88.   e    = va_arg (ap, __gmp_const char *);
  89. #endif
  90.   TRACE (printf ("mpf_expr(): base %d, %sn", base, e));
  91.   ret = mpexpr_va_to_var ((void **) var, ap);
  92.   va_end (ap);
  93.   if (ret != MPEXPR_RESULT_OK)
  94.     return ret;
  95.   return mpf_expr_a (mpf_expr_standard_table, res, base,
  96.      mpf_get_prec (res), e, strlen(e), var);
  97. }