| qm (version 0.2) | index /home/dickrp/svn/support/python/qm/qm.py | 
Quine-McCluskey two-level logic minimization method.
 
Copyright 2008, Robert Dick <dickrp@eecs.umich.edu> with improvements
from Pat Maupin <pmaupin@gmail.com>.
 
Routines to compute the optimal sum of products implementation from sets of
don't-care terms, minterms, and maxterms.
 
Command-line usage example:
  qm.py -o1,2,5 -d0,7
 
Library usage example:
  import qm
  print qm.qm(ones=[1, 2, 5], dc=[0, 7])
 
Please see the license file for legal information.
| Modules | ||||||
| 
 | ||||||
| Functions | ||
| 
 
 
 
 
 
 
 
 
 | ||
| Data | ||
| __author__ = 'Robert Dick' __author_email__ = 'dickrp@eecs.umich.edu' __version__ = '0.2' | ||
| Author | ||
| Robert Dick | ||