2024-09-26 14:32:20 +02:00
|
|
|
#ifndef GRAPH_H
|
|
|
|
#define GRAPH_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2024-10-04 01:03:39 +02:00
|
|
|
void random_adjacency(const uint64_t row_length,
|
|
|
|
const uint64_t column_length,
|
|
|
|
uint64_t matrix[row_length][column_length]);
|
2024-09-26 14:32:20 +02:00
|
|
|
|
|
|
|
#endif
|