in reply to Dependency Inference
use Graph::Directed; my $g = Graph::Directed->new; # A directed graph. $g->add_edge(...); $g->add_vertex(...); $g->vertices(...) $g->edges(...) my @ts = $g->topological_sort;
For modules in particular, check out Module::Dependency for useful methods.
-Mark
|
|---|