https://github.com/redchenjs/qmc
A C/C++ implementation of the Quine–McCluskey algorithm.
https://github.com/redchenjs/qmc
quine-mccluskey quine-mccluskey-algorithm
Last synced: over 1 year ago
JSON representation
A C/C++ implementation of the Quine–McCluskey algorithm.
- Host: GitHub
- URL: https://github.com/redchenjs/qmc
- Owner: redchenjs
- Created: 2021-03-18T13:19:05.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-08T06:34:14.000Z (about 5 years ago)
- Last Synced: 2025-01-21T09:48:34.821Z (over 1 year ago)
- Topics: quine-mccluskey, quine-mccluskey-algorithm
- Language: C++
- Homepage:
- Size: 602 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Q-M
===

## Usage
```
N M D M{...} D{...}
N: Number of variables
M: Number of minterms
D: Number of don't-care terms
M{...}: Minterms
D{...}: Don't-care terms
```
## Run
```
gcc qmc.cpp && ./a.out
```