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
97
98
/*
Copyright (C) 2015 Arb authors
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 3 of the License, or
(at your option) any later version. See <https://www.gnu.org/licenses/>.
*/
#include "acb.h"
#include "acb_mat.h"
void
acb_mat_sqr_classical(acb_mat_t B, const acb_mat_t A, slong prec)
{
slong n, i, j, k;
acb_t p, s;
n = acb_mat_nrows(A);
if (acb_mat_ncols(A) != n || acb_mat_nrows(B) != n || acb_mat_ncols(B) != n)
{
flint_throw(FLINT_ERROR, "acb_mat_sqr: incompatible dimensions\n");
}
if (n == 0)
return;
if (n == 1)
{
acb_mul(acb_mat_entry(B, 0, 0),
acb_mat_entry(A, 0, 0),
acb_mat_entry(A, 0, 0), prec);
return;
}
if (A == B)
{
acb_mat_t T;
acb_mat_init(T, n, n);
acb_mat_sqr_classical(T, A, prec);
acb_mat_swap(T, B);
acb_mat_clear(T);
return;
}
acb_init(p);
acb_init(s);
/* contribution of diagonal of A to diagonal of B */
for (i = 0; i < n; i++)
{
acb_mul(acb_mat_entry(B, i, i),
acb_mat_entry(A, i, i),
acb_mat_entry(A, i, i), prec);
}
for (i = 0; i < n; i++)
{
for (j = 0; j < i; j++)
{
/* contribution of off-diagonal of A to diagonal of B */
acb_mul(p, acb_mat_entry(A, i, j), acb_mat_entry(A, j, i), prec);
acb_add(acb_mat_entry(B, i, i), acb_mat_entry(B, i, i), p, prec);
acb_add(acb_mat_entry(B, j, j), acb_mat_entry(B, j, j), p, prec);
/* contribution of diagonal of A to off-diagonal of B */
acb_add(s, acb_mat_entry(A, i, i), acb_mat_entry(A, j, j), prec);
acb_mul(acb_mat_entry(B, i, j), acb_mat_entry(A, i, j), s, prec);
acb_mul(acb_mat_entry(B, j, i), acb_mat_entry(A, j, i), s, prec);
}
}
/* contribution of off-diagonal of A to off-diagonal of B */
if (n > 2)
{
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
for (k = 0; k < n; k++)
{
if (i != j && j != k && k != i)
{
acb_addmul(acb_mat_entry(B, i, j),
acb_mat_entry(A, i, k),
acb_mat_entry(A, k, j), prec);
}
}
}
}
}
acb_clear(p);
acb_clear(s);
}