Algorithm-QuineMcCluskey
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
2425262728293031323334353637383940414243
},
},
requires
=> {
perl
=>
'5.16.1'
,
Moose
=>
'2.16'
,
Carp
=> 0,
'Logic::Minimizer'
=>
'1.00'
,
'List::Compare::Functional'
=>
'0.53'
,
'List::Util'
=>
'1.45'
,
'namespace::autoclean'
=>
'0.28'
,
},
configure_requires
=> {
'Module::Build'
=>
'0.4224'
,
},
build_requires
=> {
'Test::More'
=> 0,
},
8687888990919293949596979899100101102103104105106
the list items to remove were the entire list. Streamlined that.
- The Hamming distance change above meant pairwise() isn't needed
now, which was the cause of the version requirement change of
List::MoreUtils. Put the older version number back in the
requirement.
0.17
2018-06-21
- Require latest version (0.428) of List::MoreUtils, as there seems
to be a crash-worthy side-effect happening
with
its earlier version
and Perl 5.26, as reported by Slaven Rezic.
- Upped the version req's of Tie::Cycle, namespace::autoclean, and
Module::Build
while
I was at it.
0.16
2017-02-27
- The test in 24-solve.t,
"A problem with sixteen possible covers"
,
had typos in four of its covers, all involving the term that
should have been BC
'D'
(the D variable was missing its complement
symbol).
0.15
2017-01-31
303132333435363738394041424344454647484950
"Module::Build"
:
"0.4224"
}
},
"runtime"
: {
"requires"
: {
"Carp"
:
"0"
,
"List::Compare::Functional"
:
"0.53"
,
"List::Util"
:
"1.45"
,
"Logic::Minimizer"
:
"1.00"
,
"Moose"
:
"2.16"
,
"namespace::autoclean"
:
"0.28"
,
"perl"
:
"v5.16.1"
}
}
},
"provides"
: {
"Algorithm::QuineMcCluskey"
: {
"file"
:
"lib/Algorithm/QuineMcCluskey.pm"
,
"version"
:
"1.01"
},
"Algorithm::QuineMcCluskey::Format"
: {
2728293031323334353637383940414243
version:
'1.01'
Algorithm::QuineMcCluskey::Util:
file: lib/Algorithm/QuineMcCluskey/Util.pm
version:
'1.01'
requires:
Carp:
'0'
List::Compare::Functional:
'0.53'
List::Util:
'1.45'
Logic::Minimizer:
'1.00'
Moose:
'2.16'
namespace::autoclean:
'0.28'
perl: v5.16.1
resources:
license: http://dev.perl.org/licenses/
version:
'1.01'
x_serialization_backend:
'CPAN::Meta::YAML version 0.018'
Makefile.PL view on Meta::CPAN
56789101112131415161718192021(
'NAME'
=>
'Algorithm::QuineMcCluskey'
,
'VERSION_FROM'
=>
'lib/Algorithm/QuineMcCluskey.pm'
,
'PREREQ_PM'
=> {
'Carp'
=> 0,
'List::Compare::Functional'
=>
'0.53'
,
'List::Util'
=>
'1.45'
,
'Logic::Minimizer'
=>
'1.00'
,
'Moose'
=>
'2.16'
,
'Test::More'
=> 0,
'namespace::autoclean'
=>
'0.28'
},
'INSTALLDIRS'
=>
'site'
,
'EXE_FILES'
=> [],
'PL_FILES'
=> {}
)
;
lib/Algorithm/QuineMcCluskey.pm view on Meta::CPAN
view all matches for this distribution
123456789101112131415161718package
Algorithm::QuineMcCluskey;
use
strict;
use
warnings;
use
5.016001;
use
Moose;
use
namespace::autoclean;
use
Carp;
#
view release on metacpan - search on metacpan
( run in 1.039 second using v1.00-cache-2.02-grep-82fe00e-cpan-9cd309a53ab )