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

https://github.com/mintplayer/karnaughmap

The Quine McCluskey algorithm in c#
https://github.com/mintplayer/karnaughmap

Last synced: 12 months ago
JSON representation

The Quine McCluskey algorithm in c#

Awesome Lists containing this project

README

          

# Karnaugh-Map
## Version info

| License | Build status |
|-----------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0) | [![master](https://github.com/MintPlayer/KarnaughMap/actions/workflows/dotnet-core.yml/badge.svg)](https://github.com/MintPlayer/KarnaughMap/actions/workflows/dotnet-core.yml) |

| Package | Version |
|----------------|---------------------------------------------------------------------------------------------------------------------------------|
| QuineMcCluskey | [![NuGet Version](https://img.shields.io/nuget/v/QuineMcCluskey.svg?style=flat)](https://www.nuget.org/packages/QuineMcCluskey) |
| KarnaughMap | [![NuGet Version](https://img.shields.io/nuget/v/KarnaughMap.svg?style=flat)](https://www.nuget.org/packages/KarnaughMap) |

## Installation
### NuGet package manager
Open the NuGet package manager and install the **QuineMcCluskey** package in the project
### Package manager console

Install-Package QuineMcCluskey
Install-Package KarnaughMap

## Usage
Simply call the following method with the required minterms and don't-cares:

var loops = QuineMcCluskeySolver.QMC_Solve(minterms, dontcares);