From bd4dc369ffd6ff2c9e5239cbd983e5b52025f057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nut=CC=A6iu?= Date: Mon, 25 Apr 2016 20:31:40 +0300 Subject: [PATCH] remove debug info --- lab10/1.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lab10/1.c b/lab10/1.c index 870d1b9..ab7c2c2 100644 --- a/lab10/1.c +++ b/lab10/1.c @@ -19,7 +19,6 @@ void load_matrix(FILE * file) { int find_min_index(int arr[], size_t size) { int index = -1; int min = arr[0]; - // if (!min) { min = arr[1]; index = 1; } for (int j = 0; j < size; j++) { if (arr[j]) { min = arr[j]; @@ -78,9 +77,6 @@ int main(void) { load_matrix(file); find_closest_path_from(1); // 1 - oradea; - // print_matrix(); - - // printf("%d\n", find_min_index(city_distance[1], 5)); if ( fclose(file) ) { perror("File can't be closed!");