From 688444bb15d91cd9ac6e5dd3f1b97ceb70276865 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 18 Jun 2009 01:30:30 -0500 Subject: stub out some pod --- lib/Graph/Implicit.pm | 86 ++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 81 insertions(+), 5 deletions(-) diff --git a/lib/Graph/Implicit.pm b/lib/Graph/Implicit.pm index fbe8ee5..0d63421 100644 --- a/lib/Graph/Implicit.pm +++ b/lib/Graph/Implicit.pm @@ -4,12 +4,19 @@ package Graph::Implicit; use Heap::Simple; use List::MoreUtils qw/apply/; -=for example +=head1 NAME + +Graph::Implicit - graph algorithms for implicitly specified graphs + +=head1 SYNOPSIS -sub { - map { [$_, $_->intrinsic_cost] } - shift->grep_adjacent(sub { shift->is_walkable }) -} + +=head1 DESCRIPTION + + +=cut + +=head1 CONSTRUCTOR =cut @@ -19,6 +26,10 @@ sub new { return bless $edge_calculator, $class; } +=head1 METHODS + +=cut + # generic information sub vertices { @@ -199,4 +210,69 @@ sub make_path { return reverse @path; } +=head1 BUGS + +No known bugs. + +Please report any bugs through RT: email +C, or browse to +L. + +=head1 SEE ALSO + +L + +=head1 SUPPORT + +You can find this documentation for this module with the perldoc command. + + perldoc Graph::Implicit + +You can also look for information at: + +=over 4 + +=item * AnnoCPAN: Annotated CPAN documentation + +L + +=item * CPAN Ratings + +L + +=item * RT: CPAN's request tracker + +L + +=item * Search CPAN + +L + +=back + +=head1 AUTHOR + + Jesse Luehrs + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2009 by Jesse Luehrs. + +This is free software; you can redistribute it and/or modify it under +the same terms as perl itself. + +=cut + 1; + +__END__ + +=for example + +sub { + map { [$_, $_->intrinsic_cost] } + shift->grep_adjacent(sub { shift->is_walkable }) +} + +=cut + -- cgit v1.2.3