1 /* 2 * Copyright (c) 2018 CPqD Foundation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef GRAPH_H_ 8 #define GRAPH_H_ 9 10 float random_nodes(void); 11 void free_memory(float **m, int length); 12 float **create_matrix(int n); 13 int read_lines(char *file); 14 void print_matrix(float **m, int n); 15 float **read_csv(char *file); 16 17 #endif 18