This commit is contained in:
Tiago Batista Cardoso
2026-02-28 11:10:17 +01:00
parent 2736884f46
commit 500e03af35
10 changed files with 508 additions and 28 deletions

View File

@@ -24,7 +24,7 @@ node_t *create_node(int id);
graph_t *create_graph(int n, double p, double q);
void add_edge(graph_t *graph, int src, int dest);
graph_t *basic_graph();
graph_t *generate_graph(int n, double p, double q);
graph_t *generate_graph(int n, double p, double q, int seed);
void displayGraph(graph_t *graph);
void free_graph(graph_t *graph);