2004-08-16 10:50:37 +01:00
|
|
|
/**
|
|
|
|
* Temp file. I just forgot Warshall...
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
graph_fill (int *graph, int nodes, int value)
|
|
|
|
{
|
|
|
|
int node;
|
|
|
|
|
2004-08-16 14:18:04 +01:00
|
|
|
node = 0;
|
|
|
|
while (node < (nodes * nodes))
|
2004-08-16 10:50:37 +01:00
|
|
|
{
|
|
|
|
graph[node] = value;
|
2004-08-16 14:18:04 +01:00
|
|
|
node++;
|
2004-08-16 10:50:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-17 10:48:29 +01:00
|
|
|
//! Show a graph
|
|
|
|
void graph_display (int *graph, int nodes)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
int index (const int i, const int j)
|
|
|
|
{
|
|
|
|
return (i * nodes + j);
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (i < nodes)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
j = 0;
|
|
|
|
while (j<nodes)
|
|
|
|
{
|
|
|
|
eprintf ("%i ", graph[index(i,j)]);
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
eprintf ("\n");
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Apply warshall's algorithm to determine the closure of a graph
|
2004-08-16 10:50:37 +01:00
|
|
|
/**
|
2004-08-17 10:48:29 +01:00
|
|
|
* If j<i and k<j, then k<i.
|
|
|
|
* Could be done more efficiently but that is irrelevant here.
|
|
|
|
*
|
|
|
|
*@param graph A pointer to the integer array of nodes*nodes elements.
|
|
|
|
*@param nodes The number of nodes in the graph.
|
|
|
|
*@Returns 0 if there is a cycle; and the algorithm aborts, 1 if there is no cycle and the result is okay.
|
2004-08-16 10:50:37 +01:00
|
|
|
*/
|
|
|
|
int
|
2004-08-17 10:48:29 +01:00
|
|
|
warshall (int *graph, int nodes)
|
2004-08-16 10:50:37 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2004-08-17 10:48:29 +01:00
|
|
|
int index (const int i, const int j)
|
2004-08-16 10:50:37 +01:00
|
|
|
{
|
2004-08-17 10:48:29 +01:00
|
|
|
return (i * nodes + j);
|
2004-08-16 10:50:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
2004-08-17 10:48:29 +01:00
|
|
|
while (i < nodes)
|
2004-08-16 10:50:37 +01:00
|
|
|
{
|
|
|
|
int j;
|
|
|
|
|
|
|
|
j = 0;
|
2004-08-17 10:48:29 +01:00
|
|
|
while (j < nodes)
|
2004-08-16 10:50:37 +01:00
|
|
|
{
|
2004-08-17 10:48:29 +01:00
|
|
|
if (graph[index (j, i)] == 1)
|
2004-08-16 10:50:37 +01:00
|
|
|
{
|
|
|
|
int k;
|
|
|
|
|
|
|
|
k = 0;
|
2004-08-17 10:48:29 +01:00
|
|
|
while (k < nodes)
|
2004-08-16 10:50:37 +01:00
|
|
|
{
|
2004-08-17 10:48:29 +01:00
|
|
|
if (graph[index (k, j)] == 1)
|
2004-08-16 10:50:37 +01:00
|
|
|
{
|
|
|
|
if (k == i)
|
|
|
|
{
|
2004-08-17 10:48:29 +01:00
|
|
|
// Oh no! A cycle.
|
|
|
|
graph [index (k,i)] = 2;
|
|
|
|
graph_display (graph, nodes);
|
2004-08-16 10:50:37 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2004-08-17 10:48:29 +01:00
|
|
|
graph[index (k, i)] = 1;
|
2004-08-16 10:50:37 +01:00
|
|
|
}
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|