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