graphprogram/graph.h
2024-09-26 14:32:20 +02:00

9 lines
186 B
C

#ifndef GRAPH_H
#define GRAPH_H
#include <stdint.h>
void random_adjacency(const uint64_t row_length, const uint64_t column_length, uint64_t matrix[row_length][column_length]);
#endif