- Added a new warshall. Compare with previous version at home.

- Rewrote the bind_to_*_run functions.
This commit is contained in:
ccremers
2004-08-16 09:50:37 +00:00
parent c518e68881
commit 05ee3f7f0a
7 changed files with 234 additions and 167 deletions

View File

@@ -193,13 +193,14 @@ closure_graph (Binding b)
}
//! Print a binding (given a binding list pointer)
int binding_print (void *bindany)
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);
b->run_to, b->ev_to);
return 1;
}