graphprogram/graph.h

10 lines
181 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
#endif