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 "arb.h"
#include "arb_mat.h"
void
arb_mat_sqr_classical(arb_mat_t B, const arb_mat_t A, slong prec)
{
slong n, i, j, k;
arb_t p, s;
n = arb_mat_nrows(A);
if (arb_mat_ncols(A) != n || arb_mat_nrows(B) != n || arb_mat_ncols(B) != n)
{
flint_throw(FLINT_ERROR, "arb_mat_sqr: incompatible dimensions\n");
}
if (n == 0)
return;
if (n == 1)
{
arb_mul(arb_mat_entry(B, 0, 0),
arb_mat_entry(A, 0, 0),
arb_mat_entry(A, 0, 0), prec);
return;
}
if (A == B)
{
arb_mat_t T;
arb_mat_init(T, n, n);
arb_mat_sqr_classical(T, A, prec);
arb_mat_swap(T, B);
arb_mat_clear(T);
return;
}
arb_init(p);
arb_init(s);
/* contribution of diagonal of A to diagonal of B */
for (i = 0; i < n; i++)
{
arb_mul(arb_mat_entry(B, i, i),
arb_mat_entry(A, i, i),
arb_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 */
arb_mul(p, arb_mat_entry(A, i, j), arb_mat_entry(A, j, i), prec);
arb_add(arb_mat_entry(B, i, i), arb_mat_entry(B, i, i), p, prec);
arb_add(arb_mat_entry(B, j, j), arb_mat_entry(B, j, j), p, prec);
/* contribution of diagonal of A to off-diagonal of B */
arb_add(s, arb_mat_entry(A, i, i), arb_mat_entry(A, j, j), prec);
arb_mul(arb_mat_entry(B, i, j), arb_mat_entry(A, i, j), s, prec);
arb_mul(arb_mat_entry(B, j, i), arb_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)
{
arb_addmul(arb_mat_entry(B, i, j),
arb_mat_entry(A, i, k),
arb_mat_entry(A, k, j), prec);
}
}
}
}
}
arb_clear(p);
arb_clear(s);
}