|
NAMEAlgorithm::Dependency::Objects - An implementation of an Object Dependency Algorithm SYNOPSIS use Algorithm::Dependency::Objects;
my $o = Algorithm::Dependency::Objects->new(
objects => \@objects,
selected => \@selected, # objects which are already taken care of
);
my @needed = $o->schedule( $objects[0] );
# need to take care of @needed for $objecs[0] to be resolved
DESCRIPTIONThis modules is a re-implementation of Algorithm::Dependency using only objects instead of object ids, making use of Set::Object for book-keeping. METHODS
SEE ALSOAdam Kennedy's excellent Algorithm::Dependency module, upon which this is based. BUGSNone that we are aware of. Of course, if you find a bug, let us know, and we will be sure to fix it. CODE COVERAGEWe use Devel::Cover to test the code coverage of our tests, below is the Devel::Cover report on this module test suite. AUTHORSYuval Kogman Stevan Little COPYRIGHT AND LICENSECopyright (C) 2005 Yuval Kogman, Stevan Little This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|