Algorithm-Bitonic-Sort
view release on metacpan or search on metacpan
Revision history for Algorithm-Bitonic-Sort
0.05 Fri Feb 10 14:16:08 CST 2017
update docs
0.04 Fri Feb 10 13:01:28 CST 2017
- fixed: works again
0.03 Mon Dec 31 09:39:18 CST 2012
Bugfix: Data::Dumper::Simple requirement should be optional
0.02 Tue Dec 18 21:24:13 CST 2012
- Added: support any number of numbers
0.01 Sat Nov 24 02:16:03 CST 2012
First version, released on an unsuspecting world.
lib/Algorithm/Bitonic/Sort.pm view on Meta::CPAN
package Algorithm::Bitonic::Sort;
use utf8;
use feature 'say';
use common::sense;
use constant DEBUG => $ENV{ALGORITHM_BITONIC_SORT_DEBUG};
if (DEBUG) {
require Data::Dumper::Simple;
}
our (@ISA, @EXPORT);
BEGIN {
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(bitonic_sort); # symbols to export on request
}
# "A supercomputer is a device for turning compute-bound problems into I/O-bound problems."
( run in 0.648 second using v1.01-cache-2.11-cpan-4d50c553e7e )