summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-06-18 01:30:30 -0500
committerJesse Luehrs <doy@tozt.net>2009-06-18 01:30:30 -0500
commit688444bb15d91cd9ac6e5dd3f1b97ceb70276865 (patch)
tree62cbeb39df7ed5f64908b3f8e3097908b8066478
parent6bd68fcd19b075cf134d33afbbe390060f6af78d (diff)
downloadgraph-implicit-688444bb15d91cd9ac6e5dd3f1b97ceb70276865.tar.gz
graph-implicit-688444bb15d91cd9ac6e5dd3f1b97ceb70276865.zip
stub out some pod
-rw-r--r--lib/Graph/Implicit.pm86
1 files 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<bug-graph-implicit at rt.cpan.org>, or browse to
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Graph-Implicit>.
+
+=head1 SEE ALSO
+
+L<Moose>
+
+=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<http://annocpan.org/dist/Graph-Implicit>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Graph-Implicit>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Graph-Implicit>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/Graph-Implicit>
+
+=back
+
+=head1 AUTHOR
+
+ Jesse Luehrs <doy at tozt dot net>
+
+=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
+