-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
572 lines (479 loc) · 15.6 KB
/
main.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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
///Os membros do grupo são:
///Luiza Culau - GRR20141014
///Adolfo Tognetti - GRR20152278
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <sys/time.h>
#include <math.h>
///funcao dada pelo professor para capturar o tempo
double timestamp(void) {
struct timeval tp;
gettimeofday(&tp, NULL);
return((double)(tp.tv_sec*1000.0 + tp.tv_usec/1000.0));
}
///funcao para imprimir a matriz no stdout
void imprimeMatriz(double *mat, unsigned int n, double tempo_LU, double tempo_iter, double tempo_residuo) {
///imprimindo os tempos e tamanho da matriz
printf("# Tempo LU: %f\n# Tempo iter: %f\n# Tempo residuo: %f\n#\n%d\n", tempo_LU, tempo_iter, tempo_residuo, n);
unsigned int iterador = 0;
unsigned int fim = n*n;
while( iterador != fim ) {
printf("%.17g ", mat[iterador]);
iterador++;
if((iterador%n) == 0){
printf("\n");
}
}
}
///funcao para imprimir a matriz em um arquivo
void imprimeMatrizArquivo(double *mat, unsigned int n, double tempo_LU, double tempo_iter, double tempo_residuo, FILE *saida) {
///imprimindo os tempos e tamanho da matriz
fprintf(saida, "# Tempo LU: %f\n# Tempo iter: %f\n# Tempo residuo: %f\n#\n%d\n", tempo_LU, tempo_iter, tempo_residuo, n);
unsigned int iterador = 0;
unsigned int fim = n*n;
while( iterador != fim ) {
fprintf(saida, "%.17g ", mat[iterador]);
iterador++;
if((iterador%n) == 0){
fprintf(saida, "\n");
}
}
}
///funcao dada pelo professor para gerar matriz eleatoria
double *generateSquareRandomMatrix( unsigned int n ) {
double *mat = NULL;
/* return NULL if memory allocation fails */
if ( ! (mat = (double *) malloc(n*n*sizeof(double))) )
return (NULL);
/* generate a randomly initialized matrix in row-major order */
double *ptr = mat;
double *end = mat + n*n;
double invRandMax = 1.0/(double)RAND_MAX;
while( ptr != end ) {
*ptr++ = (double)rand() * invRandMax;
}
return (mat);
}
///funcao para gerar uma matriz indentidade n*n
double *geraMatrizIdentidade(unsigned int tamanho) {
double *identidade = NULL;
///termina programa se alocacao falha
if ( ! (identidade = (double *) malloc(tamanho*tamanho*sizeof(double))) ){
printf("Erro: falha na alocacao da matriz, terminando o programa.\n");
exit(0);
}
for(int i = 0; i < tamanho; i++) {
for(int j = 0; j < tamanho; j ++){
identidade[(i*tamanho) + j] = 0;
if(i == j){
identidade[(i*tamanho) + j] = 1;
}
}
}
return identidade;
}
///funcao para ler a matriz de um arquivo de entrada
double *leMatriz(FILE *entrada, unsigned int *tamanho) {
double *mat = NULL;
//recuperando o tamanho da matriz
char buff[10];
fscanf(entrada, "%s", buff);
*tamanho = atoi(buff);
///termina programa see alocacao falha
if ( ! (mat = (double *) malloc(*tamanho**tamanho*sizeof(double))) ){
printf("Erro: afalha na alocacao da matriz, terminando o programa.\n");
exit(0);
}
unsigned int count = 0;
fscanf(entrada, "%s", buff);
while(count != (*tamanho**tamanho) && !feof(entrada)){
double el = atof(buff);
///salvando o elemento lido na matriz
mat[count] = el;
fscanf(entrada, "%s", buff);
count ++;
}
return mat;
}
///funcao para ler matriz do stdin
double *leMatrizStdin(unsigned int *tamanho) {
double *mat = NULL;
scanf("%u", tamanho);
///termina programa se alocacao falha
if ( !(mat = (double *) malloc(*tamanho**tamanho*sizeof(double))) ){
printf("Erro: afalha na alocacao da matriz, terminando o programa.\n");
exit(0);
}
for(int i = 0; i < (*tamanho**tamanho); i++) {
scanf("%lf", &mat[i]);
}
return mat;
}
///funcao para trocar linhas de uma matriz
void trocaLinhas(double *matriz, unsigned int tamanho, int linha1, int linha2) {
double aux;
for(int i = 0; i < tamanho; i++) {
aux = matriz[(linha1*tamanho) + i];
matriz[(linha1*tamanho) + i] = matriz[(linha2*tamanho) + i];
matriz[(linha2*tamanho) + i] = aux;
}
}
///funcao para fazer a fatoracao LU da matriz
double fatoracaoLU(double *L, double *U, double *matriz, double *identidade, unsigned int tamanho, int *trocas) {
///capturando o tempo inicial
double tempo_inicial = timestamp();
///inicializando a matriz L e a matriz U
for(int i = 0; i < tamanho; i++){
for(int j = 0; j < tamanho; j ++){
U[(i*tamanho) + j] = matriz[(i*tamanho) + j];
L[(i*tamanho) + j] = 0;
if(i == j){
L[(i*tamanho) + j] = 1;
}
}
}
///APLICANDO METODO DE GAUSS EM U
int pivo_posicao;
double pivo;
int linha;
int coluna;
bool teve_troca;
///este for faz iterar para cada coluna
for(int i = 1; i < tamanho; i++) {
pivo_posicao = i-1;
coluna = i-1;
pivo = U[tamanho*pivo_posicao+pivo_posicao];
/*teve_troca = false;
///guarda em qual linha esta o maior pivo
int maior = pivo_posicao;
int aux;
///procurando o maior elemento em modulo da coluna para ser pivo
for (int p = pivo_posicao + 1; p < tamanho; p++) {
if (fabs(U[tamanho*p+pivo_posicao]) > fabs(U[tamanho*maior+pivo_posicao])) {
maior = p;
teve_troca = true;
printf("pos pivo= %d, maior pos=%d \n", pivo_posicao, maior);
aux = trocas[pivo_posicao];
trocas[pivo_posicao] = trocas[maior];
trocas[maior] = aux;
}
}
if (teve_troca) {
trocaLinhas(U, tamanho, pivo_posicao, maior);
trocaLinhas(identidade, tamanho, pivo_posicao, maior);
trocaLinhas(matriz, tamanho, pivo_posicao, maior);
pivo = U[tamanho*pivo_posicao+pivo_posicao];
}
*/
///caso o pivo seja 0 a matriz nao tem inversa
if (pivo == 0) {
return -1;
}
///este for faz iterar para cada linha
for(int k = i; k < tamanho; k++){
linha = k*tamanho;
///obtendo o fator para multiplicar a linha anterior e subtrair da linha atual
double fator = U[linha+coluna]/pivo;
L[linha+coluna] = fator;
///este for faz a subtracao para cada el da linha
for(int j = pivo_posicao; j < tamanho; j++){
U[linha+j] = U[linha+j]-(U[tamanho*pivo_posicao+j]*fator);
}
}
}
if(U[(tamanho*tamanho)-1] == 0) {
return -1;
}
//for(int i = 0; i < tamanho; i++){
// printf("%d ", trocas[i]);
//}
//printf("\n");
///capturando variacao de tempo
tempo_inicial = timestamp() - tempo_inicial;
return tempo_inicial;
}
///Funcao que calcula os valores da matriz Inversa atraves da retrosubstituicao
double retrosubstituicao(double *L, double *U, double *Inversa, double *identidade, unsigned int tamanho) {
///capturando o tempo inicial
double tempo_inicial = timestamp();
///agora que temos a matriz identidade, a L e a U
///de forma que matriz*inversa = identidade, eh possivel
///calcular a inversa coluna por coluna na forma:
///matriz*inversa[coluna x] = identidade[coluna x]
///assim temos que Ax=b e A=LU, portanto L(Ux) = b, Ly = b e Ux = y
///criando o vetor y para salvar as informacoes
double y[tamanho];
double x[tamanho];
double multi;
///este for eh para cada coluna da identidade
for(int i = 0; i < tamanho; i++){
///inicializando o vetor y e o vetor x
for(int m = 0; m < tamanho; m++){
y[m] = 0;
x[m] = 0;
}
///Ly = b
///este for eh para cada linha de y
///faz-se a substituicao
for(int j = 0; j < tamanho; j++){
///este for opera a multiplicacao entre a matriz L e o vetor y
multi = 0;
for(int k = 0; k < j; k++){
multi = multi + L[tamanho*j+k]*y[k];
}
//y[2] = (identidade[tamanho*j+i]-(L[tamanho*j]*y[0]+L[tamanho*j+1]*y[1]))/ L[tamanho*j+2]
//...
y[j] = (identidade[tamanho*j+i] - multi) / L[tamanho*j+j];
}
///Ux = y
///agora que tenho o valor de y referente a coluna i da identidade,
///eh possivel calcular o vetor x referente a coluna i da identidade
///com retrosubstituicao
///para cada linha de x, comecando de baixo pra cima
for(int j = (tamanho-1); j >= 0; j--) {
///este for opera a multiplicacao entre U e x
multi = 0;
for(int k = (tamanho-1); k > j; k--) {
multi = multi + U[tamanho*j+k]*x[k];
}
x[j] = (y[j] - multi) / U[tamanho*j+j];
///colocando os resultados de x na matriz inversa
Inversa[tamanho*j+i] = x[j];
}
}
///capturando variacao de tempo
tempo_inicial = timestamp() - tempo_inicial;
return tempo_inicial;
}
///funcao utilizada para resolver o sistema necessario no processo de refinamento
void retrosubstituicao_refinamento(double *L, double *U, double *DiferencaInversa, double *R, unsigned int tamanho) {
///criando o vetor y para salvar as informacoes
double y[tamanho];
double x[tamanho];
double multi;
///este for eh para cada coluna da matriz R
for(int i = 0; i < tamanho; i++) {
///inicializando o vetor y e o vetor x
for(int m = 0; m < tamanho; m++){
y[m] = 0;
x[m] = 0;
}
///Ly = b
///este for eh para cada linha de y
for(int j = 0; j < tamanho; j++){
///este for opera a multiplicacao entre a matriz L e o vetor y
multi = 0;
for(int k = 0; k < j; k++){
multi = multi + L[tamanho*j+k]*y[k];
}
y[j] = (R[tamanho*j+i] - multi) / L[tamanho*j+j];
}
///Ux = y
///para cada linha de x, comecando de baixo pra cima
for(int j = (tamanho-1); j >= 0; j--) {
///este for opera a multiplicacao entre U e x
multi = 0;
for(int k = (tamanho-1); k > j; k--) {
multi = multi + U[tamanho*j+k]*x[k];
}
x[j] = (y[j] - multi) / U[tamanho*j+j];
///colocando os resultados de x na matriz DiferencaInversa
DiferencaInversa[tamanho*j+i] = x[j];
}
}
}
///Funcao que melhora os resultados obtidos anteriormente para a matriz Inversa, atraves do metodo de refinamento
double refinamento(double *matriz, double *L, double *U, double *Inversa, double *identidade, unsigned int tamanho_matriz, int iteracoes, FILE *saida, bool tem_saida, double *tempo_iter) {
double tempo_total = 0;
double soma_tempo = 0;
///repete o processo o numero de vezes foi passado por parametro
for (int it = 1; it <= iteracoes; it++) {
///R = I - I_aprox
double *R = NULL;
///I_aprox = matriz * Inversa
double *I_aprox = NULL;
if (!(R = (double *) malloc(tamanho_matriz*tamanho_matriz*sizeof(double))) ) {
printf("Erro: afalha na alocacao da matriz R, terminando o programa.\n");
exit(0);
}
if (!(I_aprox = (double *) malloc(tamanho_matriz*tamanho_matriz*sizeof(double))) ) {
printf("Erro: afalha na alocacao da matriz I_aprox, terminando o programa.\n");
exit(0);
}
///calculando I_aprox
double soma;
for(int i = 0; i < tamanho_matriz; i++) {
for(int j = 0; j < tamanho_matriz; j++) {
soma = 0;
for(int k = 0; k < tamanho_matriz; k++) {
soma = soma + matriz[(i*tamanho_matriz) + k] * Inversa[(k*tamanho_matriz) + j];
}
I_aprox[(i*tamanho_matriz) + j] = soma;
}
}
///calculando R
for(int i = 0; i < tamanho_matriz; i++){
for(int j = 0; j < tamanho_matriz; j++){
R[(i*tamanho_matriz) + j] = identidade[(i*tamanho_matriz) + j] - I_aprox[(i*tamanho_matriz) + j];
}
}
///calculando norma de R
tempo_total = timestamp();
double sum = 0;
double norma = 0;
for(int i = 0; i < tamanho_matriz*tamanho_matriz; i++) {
sum = sum + (R[i] * R[i]);
}
tempo_total = timestamp() - tempo_total;
soma_tempo = soma_tempo + tempo_total;
norma = sqrt(sum);
if (tem_saida) {
fprintf(saida, "# iter %d: %.17g\n", it, norma);
} else {
printf("# iter %d: %.17g\n", it, norma);
}
double *DiferencaInversa = NULL;
if ( ! (DiferencaInversa = (double *) malloc(tamanho_matriz*tamanho_matriz*sizeof(double))) ){
printf("Erro: afalha na alocacao da matriz DiferencaInversa, terminando o programa.\n");
exit(0);
}
//devemos resolver o sistema A*DiferencaInversa = R para encontrar DiferencaInversa
retrosubstituicao_refinamento(L, U, DiferencaInversa, R, tamanho_matriz);
double tempo_inicial = timestamp();
///entao refinamos o resultado somando a Inversa + DiferencaInversa
for(int i = 0; i < tamanho_matriz; i++){
for(int j = 0; j < tamanho_matriz; j++){
Inversa[(i*tamanho_matriz) + j] = Inversa[(i*tamanho_matriz) + j] + DiferencaInversa[(i*tamanho_matriz) + j];
}
}
tempo_inicial = timestamp() - tempo_inicial;
*tempo_iter = *tempo_iter + tempo_inicial;
free(R);
free(I_aprox);
free(DiferencaInversa);
}
return soma_tempo/iteracoes;
}
///INICIO DO PROGRAMA PRINCIPAL
int main(int argc, char *argv[]){
///inicializando a seed de randomizacao
srand( 20172 );
///apontadores para arquivos de entrada/saida
FILE *entrada;
FILE *saida;
bool tem_entrada = false;
bool tem_saida = false;
bool tem_iteracoes = false;
bool eh_randomica = false;
int iteracoes = 0;
unsigned int tamanho_matriz = 0;
double tempo_residuo = 0;
///a matriz na realidade sera um vetor onde o primeiro elemento
///fica na posicao 0 e o primeiro elemento da segunda linha
///fica na posicao n
double *matriz = NULL;
double *identidade = NULL;
///esse for localiza os parametros passados para o argv
///e faz as operacoes devidas de acordo com o parametro;
for(int i =0; i < argc; i++){
if(strcmp(argv[i], "-e") == 0){
///ler arquivo de entrada
tem_entrada = true;
entrada = fopen(argv[i+1], "r");
if (entrada == NULL) {
perror("Erro ao abrir o arquivo de entrada");
}
}
else if(strcmp(argv[i], "-o") == 0){
///escrever no arquivo de saida
tem_saida = true;
saida = fopen(argv[i+1], "w");
if (saida == NULL) {
perror("Erro ao abrir o arquivo de saida");
}
}
else if(strcmp(argv[i],"-r") == 0){
///gerar matriz eleatoriamente
eh_randomica = true;
tamanho_matriz = atoi(argv[i+1]);
matriz = generateSquareRandomMatrix(tamanho_matriz);
//descomentar a linha de baixo para ver a matriz eleatoria criada
//imprimeMatriz(matriz, tamanho_matriz,0,0,0);
}
else if(strcmp(argv[i], "-i") == 0){
///numero de iteracoes do refinamento
tem_iteracoes = true;
iteracoes = atoi(argv[i+1]);
}
}
///checando o parametro obrigatorio
if(!tem_iteracoes){
printf("Erro: O parametro -i k eh obrigatorio\n");
printf("O formato da chamada eh:\ninvmat [-e arquivo_entrada] [-o arquivo_saida] [-r N] -i k\n");
exit(0);
}
///lendo a matriz do arquivo de entrada ou do stdin
if(tem_entrada && (!eh_randomica)){
matriz = leMatriz(entrada, &tamanho_matriz);
} else if ((!tem_entrada) && (!eh_randomica)) {
matriz = leMatrizStdin(&tamanho_matriz);
}
///fazendo a fatoracao L U
double *L = NULL;
double *U = NULL;
if ( ! (L = (double *) malloc(tamanho_matriz*tamanho_matriz*sizeof(double))) ){
printf("Erro: afalha na alocacao da matriz L, terminando o programa.\n");
exit(0);
}
if ( ! (U = (double *) malloc(tamanho_matriz*tamanho_matriz*sizeof(double))) ){
printf("Erro: afalha na alocacao da matriz U, terminando o programa.\n");
exit(0);
}
///gera matriz identidade
identidade = geraMatrizIdentidade(tamanho_matriz);
int trocas[tamanho_matriz];
for(int i = 0; i < tamanho_matriz; i++){
trocas[i] = i;
}
double tempo_LU = fatoracaoLU(L, U, matriz, identidade, tamanho_matriz, trocas);
///testa se inversivel
if(tempo_LU == -1){
printf("Erro: a matriz nao eh inversivel\n");
exit(1);
}
double *Inversa = NULL;
if ( ! (Inversa = (double *) malloc(tamanho_matriz*tamanho_matriz*sizeof(double))) ){
printf("Erro: afalha na alocacao da matriz I, terminando o programa.\n");
exit(0);
}
///faz a retrosubstituicao
double tempo_iter = retrosubstituicao(L, U, Inversa, identidade, tamanho_matriz);
if (tem_saida) {
fprintf(saida, "#\n");
} else {
printf("#\n");
}
///chamando a funcao de refinamento
if (iteracoes > 0) {
tempo_residuo = refinamento(matriz, L, U, Inversa, identidade, tamanho_matriz, iteracoes, saida, tem_saida, &tempo_iter);
}
if(tem_saida){
imprimeMatrizArquivo(Inversa, tamanho_matriz, tempo_LU, tempo_iter, tempo_residuo, saida);
}
else{
imprimeMatriz(Inversa, tamanho_matriz, tempo_LU, tempo_iter, tempo_residuo);
}
///fechando os arquivos
if(tem_entrada == true){
fclose(entrada);
}
if(tem_saida == true){
fclose(saida);
}
free(matriz);
free(L);
free(U);
free(Inversa);
}