2004-10-25 15:28:53 +01:00
|
|
|
// Header file for warshall.c
|
2004-08-16 10:50:37 +01:00
|
|
|
|
|
|
|
void graph_fill (int *graph, int nodes, int value);
|
|
|
|
int warshall (int *graph, int nodes);
|
2004-10-25 15:28:53 +01:00
|
|
|
int graph_ranks (int *graph, int *ranks, int nodes);
|