-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpq_mat.c
266 lines (200 loc) · 7.01 KB
/
mpq_mat.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*============================================================================
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
===============================================================================*/
/******************************************************************************
mpq_mat.c: Matrices over Q, implemented as an array of mpq_t's
Not intended to be efficient
Copyright (C) 2010 Andy Novocin, Max Flander
******************************************************************************/
#include <string.h>
#include <stdio.h>
#include "flint.h"
#include "mpq_mat.h"
#include "mpz_mat.h"
/****************************************************************************
Initialisation and memory management
****************************************************************************/
void mpq_mat_init(mpq_mat_t mat, ulong r, ulong c)
{
if ((r) && (c)) mat->entries = (mpq_t*) flint_heap_alloc_bytes(r*c*sizeof(mpq_t));
else mat->entries = NULL;
long i;
for (i = 0; i < r*c; i++)
{
mpq_init(mat->entries[i]);
}
mat->r = r;
mat->c = c;
}
void mpq_mat_clear(mpq_mat_t mat)
{
long i;
for (i = 0; i < mat->r*mat->c; i++)
mpq_clear(mat->entries[i]);
if (mat->entries) flint_heap_free(mat->entries);
mat->entries = NULL;
mat->r = 0;
mat->c = 0;
}
void mpz_mat_to_mpq_mat(mpq_mat_t res, mpz_mat_t mat){
if ((res->r != mat->r) || (res->c != mat->c)){
printf("FLINT exception: dimensions don't match\n");
abort();
}
long i;
for (i = 0; i < mat->r*mat->c; i++)
mpq_set_z(res->entries[i], mat->entries[i]);
return;
}
void mpq_mat_print(mpq_mat_t mat){
printf("%ld %ld ", mat->r, mat->c);
long i;
for (i = 0; i < mat->r*mat->c; i++){
mpq_out_str(NULL, 10, mat->entries[i]); printf(" ");
}
return;
}
void mpq_mat_print_pretty(mpq_mat_t mat){
printf("[\n[");
long i;
for (i = 0; i < mat->r*mat->c; i++){
mpq_out_str(NULL, 10, mat->entries[i]);
if (((i+1) % mat->c) != 0) printf(" ");
else if ((i != 0) && ((i+1)!= mat->r * mat->c) ) printf("]\n[");
}
printf("]\n]\n");
return;
}
void mpq_mat_row_scalar_product(mpq_mat_t mat1, ulong r1, mpq_mat_t mat2, ulong r2, mpq_t scalar){
if (mat2->c != mat1->c){
printf("FLINT exception: dimensions don't match\n");
abort();
}
long i;
for (i = 0; i< mat1->c; i++)
mpq_mul(mat2->entries[r2*mat2->c + i],mat1->entries[r1*mat1->c + i], scalar);
return;
}
void mpq_mat_row_inner_product(mpq_t res, mpq_mat_t mat1, ulong r1, mpq_mat_t mat2, ulong r2){
if (mat2->c != mat1->c){
printf("FLINT exception: dimensions don't match\n");
abort();
}
mpq_set_ui(res, 0L, 1L);
mpq_t temp;
mpq_init(temp);
long i;
for (i = 0; i< mat1->c; i++){
mpq_mul(temp, mat2->entries[r2*mat2->c + i], mat1->entries[r1*mat1->c + i]);
mpq_add(res, res, temp);
}
mpq_clear(temp);
return;
}
void mpq_mat_row_add(mpq_mat_t mat1, ulong r1, mpq_mat_t mat2, ulong r2){
if (mat2->c != mat1->c){
printf("FLINT exception: dimensions don't match\n");
abort();
}
long i;
for (i = 0; i< mat1->c; i++)
mpq_add(mat1->entries[r1*mat1->c + i], mat2->entries[r2*mat2->c + i], mat1->entries[r1*mat1->c + i]);
return;
}
void mpq_mat_GS(mpq_mat_t mu, mpq_mat_t GS, mpq_mat_t mat){
if ( ( GS->c != mat->c ) || ( GS->r != mat->r ) ){
printf("FLINT exception: dimensions don't match\n");
abort();
}
if ( ( mu->r != mu->c) || (mu->r != mat->r) ){
printf("FLINT exception: mu dimensions don't match\n");
abort();
}
//I'm going to use mu[0] to store <GS[i], GS[i]> until the end
mpq_t temp;
mpq_init(temp);
long i, j, k;
//setting GS[0] := mat[0]
for (i = 0; i < mat->c; i++)
mpq_set(GS->entries[i], mat->entries[i]);
mpq_mat_row_inner_product(mu->entries[0], GS, 0, GS, 0);
//mu[i,i] := 1
for (i = 1; i < mu->r; i++)
mpq_set_ui(mu->entries[i*mu->c + i], 1L, 1L);
for (i = 1; i < mat->r; i++){
//in this loop we want to find GS[i] := mat[i] - sum (mu[i,j]*mat[j])
//start with GS[i] = mat[i] then for each j < i compute mu and subtract
for (k = 0; k < mat->c; k++)
mpq_set(GS->entries[i*mat->c + k], mat->entries[i*mat->c + k]);
for (j = 0; j < i; j++){
//temp will be the numerator of mu[i,j] which is <mat[i], GS[j]>
mpq_mat_row_inner_product(temp, mat, i, GS, j);
if (mpq_sgn(mu->entries[j]) != 0)
mpq_div(mu->entries[i*mu->c + j], temp, mu->entries[j]);
else
mpq_set_ui(mu->entries[i*mu->c + j], 0L, 1L);
//now need GS[i] := GS[i] - mu[i,j]*GS[j]
for (k=0; k < mat->c; k++){
//temp = mu[i,j] * GS[j,k]
mpq_mul(temp, mu->entries[i*mu->c + j], GS->entries[j*GS->c + k]);
mpq_neg(temp, temp);
mpq_add(GS->entries[i*GS->c + k], GS->entries[i*GS->c + k], temp);
}
}
if (i+1 < mu->c)
mpq_mat_row_inner_product(mu->entries[i], GS, i, GS, i);
}
mpq_set_ui(mu->entries[0], 1L, 1L);
for (k = 1; k < mu->c; k++)
mpq_set_ui(mu->entries[k], 0L, 1L);
mpq_clear(temp);
return;
}
int mpq_mat_is_reduced(mpq_mat_t mu, mpq_mat_t GS, double delta, double eta){
//want to return 1 if this data could come from a reduced matrix 0 otherwise
mpq_mat_t gs_len;
mpq_mat_init( gs_len, 1, GS->c);
mpq_t temp, temp1, temp2;
mpq_init(temp);
mpq_init(temp1);
mpq_init(temp2);
long i, j;
int result = 1;
for (i = 0; (i < GS->r) && (result == 1); i++){
mpq_mat_row_inner_product(gs_len->entries[i], GS, i, GS, i);
if (i > 0){
mpq_div(temp, gs_len->entries[i], gs_len->entries[i-1]);
mpq_mul(temp1, mu->entries[i*mu->r + i-1], mu->entries[i*mu->r + i-1]);
mpq_add(temp, temp, temp1);
mpq_set_d(temp1, delta - eta*eta);
if (mpq_cmp(temp, temp1) < 0){
result = 0;
}
else{
mpq_set_d(temp2, eta);
for( j = 0 ; (j < i) && (result == 1); j++)
if ( mpq_cmp( mu->entries[i*mu->r + j], temp2) >= 0){
result = 0;
}
}
// if temp < (3/4 or 1/(delta - eta^2))==temp1 then not reduced...
}
}
mpq_clear(temp);
mpq_clear(temp1);
mpq_clear(temp2);
mpq_mat_clear(gs_len);
return result;
}
// *************** end of file