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

https://github.com/nim-lang/sat

A SAT solver written in Nim
https://github.com/nim-lang/sat

nim sat

Last synced: over 1 year ago
JSON representation

A SAT solver written in Nim

Awesome Lists containing this project

README

          

# sat
A SAT solver written in Nim.

```nim
import sat/[sat, satvars]
```

Note:
Remember that even though SAT claims to support the OR operator, it actually doesn't and only supports it if you use it to build up an implication (A -> B == ~ A | B)