9 lines
186 B
C
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
|