Algorithm-QuineMcCluskey

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
        },
},
 
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,
},

Changes  view on Meta::CPAN

86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
          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

META.json  view on Meta::CPAN

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
         "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" : {

META.yml  view on Meta::CPAN

27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
    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:
version: '1.01'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(
  '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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
use strict;
use 5.016001;
 
use Moose;
 
use Carp;
 
use List::Util qw(uniqnum);
use List::Compare::Functional qw(get_complement is_LequivalentR);
 
extends 'https://metacpan.org/pod/Logic::Minimizer">Logic::Minimizer';
 
#

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.039 second using v1.00-cache-2.02-grep-82fe00e-cpan-9cd309a53ab )