2680a2ca7a
will allow for better positioning of the graphs. It also helps a lot for latex output. In fact, latex output is fairly trivial now.
6 lines
174 B
C
6 lines
174 B
C
// Header file for warshall.c
|
|
|
|
void graph_fill (int *graph, int nodes, int value);
|
|
int warshall (int *graph, int nodes);
|
|
int graph_ranks (int *graph, int *ranks, int nodes);
|