Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/obsfx/kmap-solver
kmap-solver is a command line tool to solve and visualize Karnaugh Maps up to 4 variables.
https://github.com/obsfx/kmap-solver
cli command-line-tool karnaugh-map karnaugh-map-simplifier karnaugh-map-solver nodejs typescript
Last synced: 23 days ago
JSON representation
kmap-solver is a command line tool to solve and visualize Karnaugh Maps up to 4 variables.
- Host: GitHub
- URL: https://github.com/obsfx/kmap-solver
- Owner: obsfx
- License: gpl-3.0
- Created: 2020-12-04T18:11:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-16T18:36:58.000Z (almost 4 years ago)
- Last Synced: 2024-10-02T08:51:07.349Z (about 1 month ago)
- Topics: cli, command-line-tool, karnaugh-map, karnaugh-map-simplifier, karnaugh-map-solver, nodejs, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/kmap-solver
- Size: 143 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kmap-solver
`kmap-solver` is a command line tool to solve and visualize `Karnaugh Maps` up to 4 variables.
![](https://raw.githubusercontent.com/obsfx/kmap-solver/main/media/a.png)
## installation
```
npm i -g kmap-solver
```## usage
![](https://raw.githubusercontent.com/obsfx/kmap-solver/main/media/b.gif)
```
Usage: kmap-solver [options]Options:
-v, --variables variables that will be used (maximum 4 vars) e.g. -v w,x,y,z
-m, --minterms decimal minterm positions e.g. -m 0,1,4,5,12
-d, --dontcares (optional) dont care positions e.g. -d 0,2,3,6
-h, --help display help for command```