- Made the output of the semistate include the bindings.

This commit is contained in:
ccremers
2004-08-15 17:50:41 +00:00
parent 071b9bd735
commit 91a679a129
3 changed files with 26 additions and 0 deletions

View File

@@ -192,6 +192,16 @@ closure_graph (Binding b)
return warshall (graph, nodes);
}
//! Print a binding (given a binding list pointer)
int binding_print (void *bindany)
{
Binding b;
b = (Binding) bindany;
eprintf ("Binding (%i,%i) --->> (%i,%i)\n", b->run_from, b->ev_from,
b->run_to, b->ev_to);
return 1;
}
//! Add a binding
/**