Skip to content

Commit

Permalink
Atualiza o tempo
Browse files Browse the repository at this point in the history
  • Loading branch information
Sr3284 committed Oct 8, 2022
1 parent f0fdd91 commit af874bc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions T1/src/rotpar.c
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ int main(int argc, char** argv)
{
char nome_arq_entrada[100],
nome_arq_saida[100];
double tini, tfim, texec;
bool achou;

if(argc != 3)
Expand All @@ -395,6 +396,7 @@ int main(int argc, char** argv)
inicializacao (nome_arq_entrada);

// Fase de expansão: calcula distância da origem até demais células do grid
tini = omp_get_wtime();
achou = expand();

// Se não encontrou caminho de origem até destino
Expand All @@ -408,6 +410,11 @@ int main(int argc, char** argv)
// Fase de traceback: obtém caminho mínimo
traceback();
}
tfim = omp_get_wtime();

texec = tfim - tini;

printf("Tempo de execução: %f\n", texec);

// Finaliza e escreve arquivo de saida
finalizacao(nome_arq_saida);
Expand Down

0 comments on commit af874bc

Please sign in to comment.