Skip to content

Commit

Permalink
improve pod
Browse files Browse the repository at this point in the history
  • Loading branch information
leto committed Sep 30, 2012
1 parent 178548b commit a32aee2
Showing 1 changed file with 75 additions and 62 deletions.
137 changes: 75 additions & 62 deletions lib/Math/Factoring.pm
Expand Up @@ -23,6 +23,68 @@ my %small_primes = map { $_ => 1 } @small_primes;

# ABSTRACT: Math::Factoring - Advanced Factoring Algorithms

=head1 SYNOPSIS
use Math::Factoring;
my $n = 42;
my @factors = factor(42); # 2 3 7
=head1 AUTHOR
Jonathan "Duke" Leto, C<< <jonathan at leto.net> >>
=head1 BUGS
Please report any bugs or feature requests to C<bug-math-factoring at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Math::Factoring>. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can also submit patches or file a Github issue:
https://github.com/leto/Math-Factoring
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Math::Factoring
You can also look for information at:
=over 4
=item * RT: CPAN's request tracker
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math::Factoring>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/Math::Factoring>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/Math::Factoring>
=item * Search CPAN
L<http://search.cpan.org/dist/Math::Factoring>
=back
=head1 ACKNOWLEDGEMENTS
=head1 COPYRIGHT & LICENSE
Copyright 2009-2012 Jonathan "Duke" Leto, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut

sub _random()
{
my $n = GMP->new(int rand(1e15) );
Expand Down Expand Up @@ -72,6 +134,13 @@ sub _factor_pollard_rho($$$)

}

=head2 factor($number)
Returns the prime factors of $number as an array. Currently this falls back to trial division.
The values in the array are plain Perl string variables, not Math::GMPz objects.
=cut

sub factor($)
{
my ($n) = @_;
Expand Down Expand Up @@ -123,6 +192,12 @@ sub factor_trial($)
return sort { $a <=> $b } @factors;
}

=head2 factor_pollard_rho($number)
Return the factors of $number as an array using the Pollard-Rho algorithm.
=cut

sub factor_pollard_rho($)
{
my $n = GMP->new($_[0]);
Expand All @@ -144,67 +219,5 @@ sub factor_pollard_rho($)

return sort { $a <=> $b } @factors;
}
=head1 SYNOPSIS
use Math::Factoring;
my $n = 42;
my @factors = factor(42); # 2 3 7
=head1 AUTHOR
Jonathan "Duke" Leto, C<< <jonathan at leto.net> >>
=head1 BUGS
Please report any bugs or feature requests to C<bug-math-factoring at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Math::Factoring>. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can also submit patches or file a Github issue:
https://github.com/leto/Math-Factoring
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Math::Factoring
You can also look for information at:
=over 4
=item * RT: CPAN's request tracker
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math::Factoring>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/Math::Factoring>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/Math::Factoring>
=item * Search CPAN
L<http://search.cpan.org/dist/Math::Factoring>
=back
=head1 ACKNOWLEDGEMENTS
=head1 COPYRIGHT & LICENSE
Copyright 2009-2012 Jonathan "Duke" Leto, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut

1; # End of Math::Factoring

0 comments on commit a32aee2

Please sign in to comment.