Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

563745 views
1
/* mpq expression evaluation
2
3
Copyright 2000, 2001, 2004 Free Software Foundation, Inc.
4
5
This file is part of the GNU MP Library.
6
7
The GNU MP Library is free software; you can redistribute it and/or modify
8
it under the terms of the GNU Lesser General Public License as published by
9
the Free Software Foundation; either version 2.1 of the License, or (at your
10
option) any later version.
11
12
The GNU MP Library is distributed in the hope that it will be useful, but
13
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15
License for more details.
16
17
You should have received a copy of the GNU Lesser General Public License
18
along with the GNU MP Library; see the file COPYING.LIB. If not, write to
19
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
MA 02110-1301, USA. */
21
22
23
#include <stdio.h>
24
#include "gmp.h"
25
#include "expr-impl.h"
26
27
28
static int
29
e_mpq_ulong_p (mpq_srcptr q)
30
{
31
return mpz_fits_ulong_p (mpq_numref (q))
32
&& mpz_cmp_ui (mpq_denref (q), 1L) == 0;
33
}
34
35
/* get value as a ui, on the assumption it fits */
36
static int
37
e_mpq_get_ui_fits (mpq_srcptr q)
38
{
39
return mpz_get_ui (mpq_numref (q));
40
}
41
42
static void
43
e_mpq_set_si1 (mpq_ptr q, long num)
44
{
45
mpq_set_si (q, num, 1L);
46
}
47
48
/* The same as mpz, but putting the result in the numerator. Negatives and
49
fractions aren't parsed here because '-' and '/' are operators. */
50
static size_t
51
e_mpq_number (mpq_ptr res, __gmp_const char *e, size_t elen, int base)
52
{
53
mpz_set_ui (mpq_denref (res), 1L);
54
return mpexpr_mpz_number (mpq_numref (res), e, elen, base);
55
}
56
57
58
/* ignoring prec */
59
static void
60
e_mpq_init (mpq_ptr q, unsigned long prec)
61
{
62
mpq_init (q);
63
}
64
65
int
66
mpq_expr_a (__gmp_const struct mpexpr_operator_t *table,
67
mpq_ptr res, int base,
68
__gmp_const char *e, size_t elen,
69
mpq_srcptr var[26])
70
{
71
struct mpexpr_parse_t p;
72
73
p.table = table;
74
p.res = (mpX_ptr) res;
75
p.base = base;
76
p.e = e;
77
p.elen = elen;
78
p.var = (mpX_srcptr *) var;
79
80
p.mpX_clear = (mpexpr_fun_one_t) mpq_clear;
81
p.mpX_ulong_p = (mpexpr_fun_i_unary_t) e_mpq_ulong_p;
82
p.mpX_get_ui = (mpexpr_fun_get_ui_t) e_mpq_get_ui_fits;
83
p.mpX_init = (mpexpr_fun_unary_ui_t) e_mpq_init;
84
p.mpX_number = (mpexpr_fun_number_t) e_mpq_number;
85
p.mpX_set = (mpexpr_fun_unary_t) mpq_set;
86
p.mpX_set_or_swap = (mpexpr_fun_unary_t) mpq_swap;
87
p.mpX_set_si = (mpexpr_fun_set_si_t) e_mpq_set_si1;
88
p.mpX_swap = (mpexpr_fun_swap_t) mpq_swap;
89
90
return mpexpr_evaluate (&p);
91
}
92
93