This repository has been archived by the owner on Oct 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
77 lines (58 loc) · 2.2 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
/*
============================================================================
TRABALHO PRÁTICO 3 - Counting Boolean Parenthesization
Algoritmos e Estruturas de Dados III
Bruno Maciel Peres
brunomperes@dcc.ufmg.br
MAIN.C - Arquivo principal do programa, contém as chamadas de funções de entrada e saída e chamada de execução da função principal.
============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include "heuristica.h"
#include "io.h"
#include "timerlinux.h"
#include "boolexp.h"
#define SIM 1
#define TAMMAXNOMEARQ 256
int main(int argc, char **argv) {
//Nomes dos arquivos
char NomeArqEntrada[TAMMAXNOMEARQ];
char NomeArqSaida[TAMMAXNOMEARQ];
//Variáveis para análise do programa
int Analise;
char NomeArqAnaliseHeur[] = "Analise.txt";
stopWatch cronometro;
double tempogasto;
//Variáveis para execução
int j;
int instancias;
TipoMemoria QntTrue;
//Verifica se os parâmetros necessários foram passados para o programa
checaEntrada(argc, argv, NomeArqEntrada, NomeArqSaida, &Analise);
FILE *ArqEntrada = fopen(NomeArqEntrada, "r");
if (ArqEntrada == NULL) {
printf("\n[ERRO] Problema ao abrir o arquivo de entrada\nVerifique se o arquivo passado como argumento realmente existe\n\n");
exit(1); //Finaliza o programa com status de erro
}
FILE *ArqSaida = fopen (NomeArqSaida,"w");
FILE *ArqAnalise = fopen (NomeArqAnaliseHeur,"a");
instancias = LeInstancias(ArqEntrada);
for (j=0; j<instancias; j++) {
BoolExp *exp = LeituraExpressao(ArqEntrada);
EscreveInt(ArqAnalise, TamanhoExp(exp)); //Escreve o tamanho da expressão
if (Analise == SIM) startTimer(&cronometro);
QntTrue = ContaParentizacaoTrue(ArqAnalise, exp);
if (Analise == SIM) stopTimer(&cronometro);
if (Analise == SIM) tempogasto = getElapsedTime(&cronometro);
EscreveResultado(ArqSaida, QntTrue);
if (Analise == SIM) EscreveTempoExec(ArqAnalise, tempogasto);
free (exp);
}
fclose(ArqEntrada);
fclose(ArqSaida);
fclose(ArqAnalise);
return 0;
}