Quantization (signal processing): Difference between revisions
en>Mblumber expand citations |
en>Frze m normal images |
||
Line 1: | Line 1: | ||
The '''Quine–McCluskey algorithm''' (or '''the method of prime implicants''') is a method used for [[Circuit minimization|minimization of boolean function]]s which was developed by [[Willard Van Orman Quine|W.V. Quine]] and [[Edward J. McCluskey]] in 1956. It is functionally identical to [[Karnaugh map]]ping, but the tabular form makes it more efficient for use in computer algorithms, and it also gives a deterministic way to check that the minimal form of a [[Boolean function]] has been reached. It is sometimes referred to as the tabulation method. | |||
The method involves two steps: | |||
# Finding all [[implicant|prime implicants]] of the function. | |||
# Use those prime implicants in a ''prime implicant chart'' to find the essential prime implicants of the function, as well as other prime implicants that are necessary to cover the function. | |||
== | ==Complexity== | ||
Although more practical than [[Karnaugh mapping]] when dealing with more than four variables, the Quine–McCluskey algorithm also has a limited range of use since the [[Boolean satisfiability problem|problem]] it solves is [[NP-hard]]: the [[Run time (program lifecycle phase)|runtime]] of the Quine–McCluskey algorithm grows [[exponential growth|exponentially]] with the number of variables. It can be shown that for a function of ''n'' variables the upper bound on the number of prime implicants is 3<sup>''n''</sup>/''n''. If ''n'' = 32 there may be over 6.5 * 10<sup>15</sup> prime implicants. Functions with a large number of variables have to be minimized with potentially non-optimal [[Heuristic algorithm|heuristic]] methods, of which the [[Espresso heuristic logic minimizer]] is the de facto standard.<ref>V.P. Nelson e.a., ''Digital Circuit Analysis and Design'', Prentice Hall, 1995, pag. 234</ref> | |||
==Example== | |||
== | ===Step 1: finding prime implicants=== | ||
Minimizing an arbitrary function: | |||
:<math>f(A,B,C,D) =\sum m(4,8,10,11,12,15) + d(9,14). \,</math> | |||
This expression says that the output function f will be 1 for the minterms 4,8,10,11,12 and 15 (denoted by the 'm' term). But it also says that we don't care about the output for 9 and 14 combinations. ('x' stands for don't care). | |||
= | {| class="wikitable" | ||
|- | |||
! !! A !! B !! C !! D !! !! f | |||
|- | |||
| m0 || 0 || 0 || 0 || 0 || || 0 | |||
|- | |||
| m1 || 0 || 0 || 0 || 1 || || 0 | |||
|- | |||
| m2 || 0 || 0 || 1 || 0 || || 0 | |||
|- | |||
| m3 || 0 || 0 || 1 || 1 || || 0 | |||
|- | |||
| m4 || 0 || 1 || 0 || 0 || || 1 | |||
|- | |||
| m5 || 0 || 1 || 0 || 1 || || 0 | |||
|- | |||
| m6 || 0 || 1 || 1 || 0 || || 0 | |||
|- | |||
| m7 || 0 || 1 || 1 || 1 || || 0 | |||
|- | |||
| m8 || 1 || 0 || 0 || 0 || || 1 | |||
|- | |||
| m9 || 1 || 0 || 0 || 1 || || x | |||
|- | |||
| m10 || 1 || 0 || 1 || 0 || || 1 | |||
|- | |||
| m11 || 1 || 0 || 1 || 1 || || 1 | |||
|- | |||
| m12 || 1 || 1 || 0 || 0 || || 1 | |||
|- | |||
| m13 || 1 || 1 || 0 || 1 || || 0 | |||
|- | |||
| m14 || 1 || 1 || 1 || 0 || || x | |||
|- | |||
| m15 || 1 || 1 || 1 || 1 || || 1 | |||
|} | |||
One can easily form the canonical [[sum of products]] expression from this table, simply by summing the [[minterm]]s (leaving out [[Don't-care (logic)|don't-care terms]]) where the function evaluates to one: | |||
:<math>f_{A,B,C,D} = A'BC'D' + AB'C'D' + AB'CD' + AB'CD + ABC'D' + ABCD,</math> | |||
which is not minimal. So to optimize, all minterms that evaluate to one are first placed in a minterm table. Don't-care terms are also added into this table, so they can be combined with minterms: | |||
{| class="wikitable" | |||
|- | |||
! Number of 1s !! Minterm !! Binary Representation | |||
|- | |||
| rowspan="2" | 1 | |||
| m4 || 0100 | |||
|- | |||
| m8 || 1000 | |||
|- | |||
| rowspan="3" | 2 | |||
| m9 || 1001 | |||
|- | |||
| m10 || 1010 | |||
|- | |||
| m12 || 1100 | |||
|- | |||
| rowspan="2" | 3 | |||
| m11 || 1011 | |||
|- | |||
| m14 || 1110 | |||
|- | |||
|| 4 | |||
| m15 || 1111 | |||
|} | |||
At this point, one can start combining minterms with other minterms. If two terms vary by only a single digit changing, that digit can be replaced with a dash indicating that the digit doesn't matter. Terms that can't be combined any more are marked with a "*". When going from Size 2 to Size 4, treat '-' as a third bit value. Ex: -110 and -100 or -11- can be combined, but not -110 and 011-. (Trick: Match up the '-' first.) | |||
{| class="wikitable" | |||
|- | |||
! Number of 1s !! Minterm !! 0-Cube !! Size 2 Implicants !! Size 4 Implicants | |||
|- | |||
| rowspan="4" | 1 | |||
| m4 || 0100 || m(4,12) -100* || m(8,9,10,11) 10--* | |||
|- | |||
| m8 || 1000 || m(8,9) 100- || m(8,10,12,14) 1--0* | |||
|- | |||
| -- || -- || m(8,10) 10-0 || -- | |||
|- | |||
| -- || -- || m(8,12) 1-00 || -- | |||
|- | |||
| rowspan="4" | 2 | |||
| m9 || 1001 || m(9,11) 10-1 || m(10,11,14,15) 1-1-* | |||
|- | |||
| m10 || 1010 || m(10,11) 101- || -- | |||
|- | |||
| m12 || 1100 || m(10,14) 1-10 || -- | |||
|- | |||
| -- || -- || m(12,14) 11-0 || -- | |||
|- | |||
| rowspan="2" | 3 | |||
| m11 || 1011 || m(11,15) 1-11 || -- | |||
|- | |||
| m14 || 1110 || m(14,15) 111- || -- | |||
|- | |||
| rowspan="1" | 4 | |||
| m15 || 1111 || -- || -- | |||
|} | |||
Note: In this example, none of the terms in the size 4 implicants table can be combined any further. Be aware that this processing should be continued otherwise (size 8 etc.). | |||
===Step 2: prime implicant chart=== | |||
None of the terms can be combined any further than this, so at this point we construct an essential prime implicant table. Along the side goes the prime implicants that have just been generated, and along the top go the minterms specified earlier. The don't care terms are not placed on top - they are omitted from this section because they are not necessary inputs. | |||
{| class="wikitable" | |||
|- | |||
| || 4 || 8 || 10 || 11 || 12 || 15 || => || A || B || C || D | |||
|- | |||
| m(4,12)* || X || || || || X || || => || - || 1 || 0 || 0 | |||
|- | |||
| m(8,9,10,11) || || X || X || X || || || => || 1 || 0 || - || - | |||
|- | |||
| m(8,10,12,14) || || X || X || || X || || | |||
|- | |||
| m(10,11,14,15)* || || || X || X || || X || => || 1 || - || 1 || - | |||
|} | |||
To find the essential prime implicants, we run along the top row. We have to look for columns with only 1 star. If a column has only 1 star, this means that the minterm can only be covered by 1 prime implicant. This prime implicant is ''essential''. For example: in the first column, with minterm 4, there is only 1 star. This means that m(4,12) is essential. So we place a star next to it. Minterm 15 also only has 1 star. This means that m(10,11,14,15) is also essential. Now all columns with 1 star are covered. | |||
The second prime implicant can be 'covered' by the third and fourth, and the third prime implicant can be 'covered' by the second and first, and neither is thus essential. If a prime implicant is essential then, as would be expected, it is necessary to include it in the minimized boolean equation. In some cases, the essential prime implicants do not cover all minterms, in which case additional procedures for chart reduction can be employed. The simplest "additional procedure" is trial and error, but a more systematic way is [[Petrick's method|Petrick's Method]]. In the current example, the essential prime implicants do not handle all of the minterms, so, in this case, one can combine the essential implicants with one of the two non-essential ones to yield one equation: | |||
:<math>f_{A,B,C,D} = BC'D' + AB' + AC \ </math> | |||
Both of those final equations are functionally equivalent to the original, verbose equation: | |||
:<math>f_{A,B,C,D} = A'BC'D' + AB'C'D' + AB'C'D + AB'CD' + AB'CD + ABC'D' + ABCD' + ABCD. \ </math> | |||
==See also== | |||
* [[Boolean algebra (logic)]] | |||
* [[Circuit minimization]] | |||
* [[Karnaugh map]] | |||
* [[Minilog|Espresso]] heuristic minimization program | |||
* [[Petrick's method]] | |||
* [[Willard Van Orman Quine]] | |||
* [[Buchberger's algorithm]] (analogous algorithm for algebraic geometry) | |||
==References== | |||
{{reflist}} | |||
==External links== | |||
*[http://frederic.carpon.perso.sfr.fr/Quine-McCluskey_%28frederic_carpon_implementation%29.php Quine-McCluskey algorithm implementation with a search of all solutions], by Frédéric Carpon. | |||
* [http://www.embedded.com/columns/programmerstoolbox/29111968 All about Quine-McClusky], article by Jack Crenshaw comparing Quine-McClusky to Karnaugh maps | |||
*[http://user.cs.tu-berlin.de/~lordmaik/projects/quinemccluskey/quinemccluskey/quineapplet.htm Java-Applet]{{dead link|date=November 2012}} Applet to minimize a boolean function based on QuineMcCluskey Algorithm. (German page) | |||
* [http://www.inf.ufrgs.br/logics/ Karma 3], A set of logic synthesis tools including Karnaugh maps, Quine-McCluskey minimization, BDDs, probabilities, teaching module and more. Logic Circuits Synthesis Labs (LogiCS) - [[UFRGS]], Brazil. | |||
* A. Costa [http://www4.dei.isep.ipp.pt/acc/bfunc/ BFunc], QMC based boolean logic simplifiers supporting up to 64 inputs / 64 outputs (independently) or 32 outputs (simultaneously) | |||
* [http://www25.brinkster.com/denshade/QuineMcCluskey.html Java applet]{{dead link|date=November 2012}} to display all the generated primes. | |||
* [[Python (programming language)|Python]] [http://cheeseshop.python.org/pypi/qm/0.2 Implementation] by Robert Dick, with an [http://shiftlock.wordpress.com/2011/05/17/quine-mccluskey-algorithm-implementation-in-python/ optimized version]. | |||
* [[Python (programming language)|Python]] [http://symlog.git.sourceforge.net/git/gitweb.cgi?p=symlog/symlog;a=blob_plain;f=symlog/logic.py;hb=HEAD Implementation] for symbolically reducing Boolean expressions. | |||
* [http://sourceforge.net/projects/quinessence/ Quinessence], an open source implementation written in Free Pascal by Marco Caminati. | |||
* [http://cran.r-project.org/web/packages/QCA/index.html QCA] an open source, R based implementation used in the social sciences, by [[Adrian Duşa]] | |||
* A series of two articles describing the algorithm(s) implemented in R: [http://www.compasss.org/files/WPfiles/Dusa2007.pdf first article]{{dead link|date=November 2012}} and [http://www.compasss.org/files/WPfiles/Dusa2007a.pdf second article]{{dead link|date=November 2012}}. The R implementation is exhaustive and it offers complete and exact solutions. It processes up to 20 input variables. | |||
* [http://www.p0p0v.com/science/#_minBool minBool] an implementation by Andrey Popov. | |||
* [http://www-ihs.theoinf.tu-ilmenau.de/~sane/projekte/qmc/embed_qmc.html], an applet for a step by step analyze of the QMC- algorithm by Christian Roth | |||
* [http://sourceforge.net/projects/qmcs] SourceForge.net C++ program implementing the algorithm. | |||
* [https://metacpan.org/module/Algorithm::QuineMcCluskey Perl Module] by Darren M. Kulp. | |||
* [http://sites.google.com/site/simpogical/download] Tutorial on Quine-McCluskey and Petrick's method (pdf). | |||
* [http://code.google.com/p/quine-mccluskey-petrick/source/browse/] C++ implementation (including Petrick) based on the tutorial above | |||
* [http://sourceforge.net/projects/mini-qmc] Public Domain console based C program on SourceForge.net. | |||
<!-- * George Vastianos. [http://www.seattlerobotics.org/encoder/200106/qmccmin.htm Boolean functions' minimisation software based on the Quine-McCluskey method]. ''Encoder''. --> | |||
* [http://matwbn.icm.edu.pl/ksiazki/amc/amc13/amc13414.pdf Tomaszewski, S. P., Celik, I. U., Antoniou, G. E., "WWW-based Boolean function minimization" INTERNATIONAL JOURNAL OF APPLIED MATHEMATICS AND COMPUTER SCIENCE, VOL 13; PART 4, pages 577-584, 2003.] | |||
* For a fully worked out example visit: http://www.cs.ualberta.ca/~amaral/courses/329/webslides/Topic5-QuineMcCluskey/sld024.htm | |||
* An excellent resource detailing each step: [http://www.ocoudert.com/papers/pdf/int94.pdf Olivier Coudert "Two-level logic minimization: an overview" INTEGRATION, the VLSI journal, 17-2, pp. 97–140, October 1994] | |||
* The Boolean Bot: A JavaScript implementation for the web: http://booleanbot.com/ | |||
{{DEFAULTSORT:Quine-Mccluskey Algorithm}} | |||
[[Category:Boolean algebra]] | |||
[[Category:Willard Van Orman Quine]] |
Revision as of 10:51, 21 January 2014
The Quine–McCluskey algorithm (or the method of prime implicants) is a method used for minimization of boolean functions which was developed by W.V. Quine and Edward J. McCluskey in 1956. It is functionally identical to Karnaugh mapping, but the tabular form makes it more efficient for use in computer algorithms, and it also gives a deterministic way to check that the minimal form of a Boolean function has been reached. It is sometimes referred to as the tabulation method.
The method involves two steps:
- Finding all prime implicants of the function.
- Use those prime implicants in a prime implicant chart to find the essential prime implicants of the function, as well as other prime implicants that are necessary to cover the function.
Complexity
Although more practical than Karnaugh mapping when dealing with more than four variables, the Quine–McCluskey algorithm also has a limited range of use since the problem it solves is NP-hard: the runtime of the Quine–McCluskey algorithm grows exponentially with the number of variables. It can be shown that for a function of n variables the upper bound on the number of prime implicants is 3n/n. If n = 32 there may be over 6.5 * 1015 prime implicants. Functions with a large number of variables have to be minimized with potentially non-optimal heuristic methods, of which the Espresso heuristic logic minimizer is the de facto standard.[1]
Example
Step 1: finding prime implicants
Minimizing an arbitrary function:
This expression says that the output function f will be 1 for the minterms 4,8,10,11,12 and 15 (denoted by the 'm' term). But it also says that we don't care about the output for 9 and 14 combinations. ('x' stands for don't care).
A | B | C | D | f | ||
---|---|---|---|---|---|---|
m0 | 0 | 0 | 0 | 0 | 0 | |
m1 | 0 | 0 | 0 | 1 | 0 | |
m2 | 0 | 0 | 1 | 0 | 0 | |
m3 | 0 | 0 | 1 | 1 | 0 | |
m4 | 0 | 1 | 0 | 0 | 1 | |
m5 | 0 | 1 | 0 | 1 | 0 | |
m6 | 0 | 1 | 1 | 0 | 0 | |
m7 | 0 | 1 | 1 | 1 | 0 | |
m8 | 1 | 0 | 0 | 0 | 1 | |
m9 | 1 | 0 | 0 | 1 | x | |
m10 | 1 | 0 | 1 | 0 | 1 | |
m11 | 1 | 0 | 1 | 1 | 1 | |
m12 | 1 | 1 | 0 | 0 | 1 | |
m13 | 1 | 1 | 0 | 1 | 0 | |
m14 | 1 | 1 | 1 | 0 | x | |
m15 | 1 | 1 | 1 | 1 | 1 |
One can easily form the canonical sum of products expression from this table, simply by summing the minterms (leaving out don't-care terms) where the function evaluates to one:
which is not minimal. So to optimize, all minterms that evaluate to one are first placed in a minterm table. Don't-care terms are also added into this table, so they can be combined with minterms:
Number of 1s | Minterm | Binary Representation |
---|---|---|
1 | m4 | 0100 |
m8 | 1000 | |
2 | m9 | 1001 |
m10 | 1010 | |
m12 | 1100 | |
3 | m11 | 1011 |
m14 | 1110 | |
4 | m15 | 1111 |
At this point, one can start combining minterms with other minterms. If two terms vary by only a single digit changing, that digit can be replaced with a dash indicating that the digit doesn't matter. Terms that can't be combined any more are marked with a "*". When going from Size 2 to Size 4, treat '-' as a third bit value. Ex: -110 and -100 or -11- can be combined, but not -110 and 011-. (Trick: Match up the '-' first.)
Number of 1s | Minterm | 0-Cube | Size 2 Implicants | Size 4 Implicants |
---|---|---|---|---|
1 | m4 | 0100 | m(4,12) -100* | m(8,9,10,11) 10--* |
m8 | 1000 | m(8,9) 100- | m(8,10,12,14) 1--0* | |
-- | -- | m(8,10) 10-0 | -- | |
-- | -- | m(8,12) 1-00 | -- | |
2 | m9 | 1001 | m(9,11) 10-1 | m(10,11,14,15) 1-1-* |
m10 | 1010 | m(10,11) 101- | -- | |
m12 | 1100 | m(10,14) 1-10 | -- | |
-- | -- | m(12,14) 11-0 | -- | |
3 | m11 | 1011 | m(11,15) 1-11 | -- |
m14 | 1110 | m(14,15) 111- | -- | |
4 | m15 | 1111 | -- | -- |
Note: In this example, none of the terms in the size 4 implicants table can be combined any further. Be aware that this processing should be continued otherwise (size 8 etc.).
Step 2: prime implicant chart
None of the terms can be combined any further than this, so at this point we construct an essential prime implicant table. Along the side goes the prime implicants that have just been generated, and along the top go the minterms specified earlier. The don't care terms are not placed on top - they are omitted from this section because they are not necessary inputs.
4 | 8 | 10 | 11 | 12 | 15 | => | A | B | C | D | |
m(4,12)* | X | X | => | - | 1 | 0 | 0 | ||||
m(8,9,10,11) | X | X | X | => | 1 | 0 | - | - | |||
m(8,10,12,14) | X | X | X | ||||||||
m(10,11,14,15)* | X | X | X | => | 1 | - | 1 | - |
To find the essential prime implicants, we run along the top row. We have to look for columns with only 1 star. If a column has only 1 star, this means that the minterm can only be covered by 1 prime implicant. This prime implicant is essential. For example: in the first column, with minterm 4, there is only 1 star. This means that m(4,12) is essential. So we place a star next to it. Minterm 15 also only has 1 star. This means that m(10,11,14,15) is also essential. Now all columns with 1 star are covered.
The second prime implicant can be 'covered' by the third and fourth, and the third prime implicant can be 'covered' by the second and first, and neither is thus essential. If a prime implicant is essential then, as would be expected, it is necessary to include it in the minimized boolean equation. In some cases, the essential prime implicants do not cover all minterms, in which case additional procedures for chart reduction can be employed. The simplest "additional procedure" is trial and error, but a more systematic way is Petrick's Method. In the current example, the essential prime implicants do not handle all of the minterms, so, in this case, one can combine the essential implicants with one of the two non-essential ones to yield one equation:
Both of those final equations are functionally equivalent to the original, verbose equation:
See also
- Boolean algebra (logic)
- Circuit minimization
- Karnaugh map
- Espresso heuristic minimization program
- Petrick's method
- Willard Van Orman Quine
- Buchberger's algorithm (analogous algorithm for algebraic geometry)
References
43 year old Petroleum Engineer Harry from Deep River, usually spends time with hobbies and interests like renting movies, property developers in singapore new condominium and vehicle racing. Constantly enjoys going to destinations like Camino Real de Tierra Adentro.
External links
- Quine-McCluskey algorithm implementation with a search of all solutions, by Frédéric Carpon.
- All about Quine-McClusky, article by Jack Crenshaw comparing Quine-McClusky to Karnaugh maps
- Java-AppletTemplate:Dead link Applet to minimize a boolean function based on QuineMcCluskey Algorithm. (German page)
- Karma 3, A set of logic synthesis tools including Karnaugh maps, Quine-McCluskey minimization, BDDs, probabilities, teaching module and more. Logic Circuits Synthesis Labs (LogiCS) - UFRGS, Brazil.
- A. Costa BFunc, QMC based boolean logic simplifiers supporting up to 64 inputs / 64 outputs (independently) or 32 outputs (simultaneously)
- Java appletTemplate:Dead link to display all the generated primes.
- Python Implementation by Robert Dick, with an optimized version.
- Python Implementation for symbolically reducing Boolean expressions.
- Quinessence, an open source implementation written in Free Pascal by Marco Caminati.
- QCA an open source, R based implementation used in the social sciences, by Adrian Duşa
- A series of two articles describing the algorithm(s) implemented in R: first articleTemplate:Dead link and second articleTemplate:Dead link. The R implementation is exhaustive and it offers complete and exact solutions. It processes up to 20 input variables.
- minBool an implementation by Andrey Popov.
- [1], an applet for a step by step analyze of the QMC- algorithm by Christian Roth
- [2] SourceForge.net C++ program implementing the algorithm.
- Perl Module by Darren M. Kulp.
- [3] Tutorial on Quine-McCluskey and Petrick's method (pdf).
- [4] C++ implementation (including Petrick) based on the tutorial above
- [5] Public Domain console based C program on SourceForge.net.
- Tomaszewski, S. P., Celik, I. U., Antoniou, G. E., "WWW-based Boolean function minimization" INTERNATIONAL JOURNAL OF APPLIED MATHEMATICS AND COMPUTER SCIENCE, VOL 13; PART 4, pages 577-584, 2003.
- For a fully worked out example visit: http://www.cs.ualberta.ca/~amaral/courses/329/webslides/Topic5-QuineMcCluskey/sld024.htm
- An excellent resource detailing each step: Olivier Coudert "Two-level logic minimization: an overview" INTEGRATION, the VLSI journal, 17-2, pp. 97–140, October 1994
- The Boolean Bot: A JavaScript implementation for the web: http://booleanbot.com/
- ↑ V.P. Nelson e.a., Digital Circuit Analysis and Design, Prentice Hall, 1995, pag. 234