forked from flintlib/flint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset_cfrac.c
96 lines (80 loc) · 2.59 KB
/
set_cfrac.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*=============================================================================
This file is part of FLINT.
FLINT is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
FLINT is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FLINT; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
=============================================================================*/
/******************************************************************************
Copyright (C) 2011 Fredrik Johansson
******************************************************************************/
#include "fmpq.h"
#include "fmpz_mat.h"
void
_fmpq_set_cfrac_basecase(fmpz_t p, fmpz_t t, fmpz_t q, fmpz_t u,
const fmpz * c, slong n)
{
slong i;
fmpz_set(p, c);
fmpz_one(q);
fmpz_one(t);
fmpz_zero(u);
for (i = 1; i < n; i++)
{
fmpz_addmul(t, c + i, p);
fmpz_addmul(u, c + i, q);
fmpz_swap(t, p);
fmpz_swap(u, q);
}
}
void
_fmpq_set_cfrac_divconquer(fmpz_mat_t P, const fmpz * c, slong n)
{
if (n < 32)
{
_fmpq_set_cfrac_basecase(
fmpz_mat_entry(P, 0, 0), fmpz_mat_entry(P, 0, 1),
fmpz_mat_entry(P, 1, 0), fmpz_mat_entry(P, 1, 1), c, n);
}
else
{
fmpz_mat_t L, R;
slong m = n / 2;
fmpz_mat_init(L, 2, 2);
fmpz_mat_init(R, 2, 2);
_fmpq_set_cfrac_divconquer(L, c, m);
_fmpq_set_cfrac_divconquer(R, c + m, n - m);
fmpz_mat_mul_classical(P, L, R); /* Should be Strassen */
fmpz_mat_clear(L);
fmpz_mat_clear(R);
}
}
void
fmpq_set_cfrac(fmpq_t x, const fmpz * c, slong n)
{
if (n <= 64)
{
fmpz_t t, u;
fmpz_init(t);
fmpz_init(u);
_fmpq_set_cfrac_basecase(fmpq_numref(x), t, fmpq_denref(x), u, c, n);
fmpz_clear(t);
fmpz_clear(u);
}
else
{
fmpz_mat_t P;
fmpz_mat_init(P, 2, 2);
_fmpq_set_cfrac_divconquer(P, c, n);
fmpz_set(fmpq_numref(x), fmpz_mat_entry(P, 0, 0));
fmpz_set(fmpq_denref(x), fmpz_mat_entry(P, 1, 0));
fmpz_mat_clear(P);
}
}