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#
- Host: GitHub
- URL: https://github.com/mintplayer/karnaughmap
- Owner: MintPlayer
- Created: 2019-10-01T14:31:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-08-06T17:15:52.000Z (almost 3 years ago)
- Last Synced: 2024-11-20T11:11:38.519Z (over 1 year ago)
- Language: C#
- Size: 102 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Karnaugh-Map
## Version info
| License | Build status |
|-----------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [](https://opensource.org/licenses/Apache-2.0) | [](https://github.com/MintPlayer/KarnaughMap/actions/workflows/dotnet-core.yml) |
| Package | Version |
|----------------|---------------------------------------------------------------------------------------------------------------------------------|
| QuineMcCluskey | [](https://www.nuget.org/packages/QuineMcCluskey) |
| KarnaughMap | [](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);