An open API service indexing awesome lists of open source software.

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.

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
```