The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Algorithm-QuineMcCluskey, version 0.06

NOTE: Although the API is currently stable as an independent stand-alone
module, it is being viewed as a sub-object for another, more encompassing
module (currently under development). The object methods will probably
be unchanged, but the utility and formatting functions may not only
change but in some cases may move to another module.

This module creates objects designed to solve boolean expressions via the
Quine-McCluskey algorithm. Its effectiveness is dependent on the size of
problem; the number of minterms that can be set goes up exponentially with
the number of variables. However, as speed and memory have improved, the
upper limit of what is practical to solve has also risen, so your problem's
solution may be within range of this algorithm's ability.

INSTALLATION

To install this module, run the following commands:

    perl Build.PL
    build
    build test
    build install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

    perldoc Algorithm::QuineMcCluskey

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/Algorithm-QuineMcCluskey

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Algorithm-QuineMcCluskey

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/Algorithm-QuineMcCluskey

    CPAN Ratings:
        http://cpanratings.perl.org/d/Algorithm-QuineMcCluskey

COPYRIGHT AND LICENCE

Copyright (C) 2006 Darren Kulp

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.