graphprogram/graph.h

14 lines
418 B
C
Raw Normal View History

2024-09-26 14:32:20 +02:00
#ifndef GRAPH_H
#define GRAPH_H
#include <stdint.h>
2024-10-04 13:05:02 +02:00
void random_adjacency(const uint64_t vertex_count,
uint64_t matrix[vertex_count][vertex_count]);
2024-09-26 14:32:20 +02:00
2024-10-04 17:36:40 +02:00
void calculate_distance_matrix(const uint64_t vertex_count,
const uint64_t adjacency_matrix[vertex_count][vertex_count],
uint64_t distance_matrix[vertex_count][vertex_count]);
2024-09-26 14:32:20 +02:00
#endif