From 3c8b380b98b8fd5dcbaa3a254ab71ac20a485099 Mon Sep 17 00:00:00 2001 From: Mendes Oulamara Date: Fri, 6 Dec 2013 18:08:37 +0100 Subject: Addition of sets_equal to bitsets --- graph.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'graph.h') diff --git a/graph.h b/graph.h index 3c913ba..e85ef90 100644 --- a/graph.h +++ b/graph.h @@ -30,15 +30,15 @@ #include "sets.h" struct graph_descriptor { - int N; // number of nodes - set *neighbour; // set of neighbours for each node + int N; // nombre de noeuds + set *neighbour; // ensemble des voisins de chaque noeuds }; typedef struct graph_descriptor *graph; -graph load_graph(FILE *stream); // format specified in README file -graph load_graph_dimacs(FILE *stream); // again, see README +graph load_graph(FILE *stream); // spécification du format dans le fichier README +graph load_graph_dimacs(FILE *stream); // cf README const set graph_neighbours(const graph g, int n); void dump_graphviz(const graph g, FILE *stream); void delete_graph(graph g); -- cgit v1.2.3