Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelbeaumont/rust-sat
SAT solving with Rust
https://github.com/michaelbeaumont/rust-sat
rust sat sat-solver
Last synced: 21 days ago
JSON representation
SAT solving with Rust
- Host: GitHub
- URL: https://github.com/michaelbeaumont/rust-sat
- Owner: michaelbeaumont
- License: mit
- Created: 2014-11-26T21:28:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T18:24:00.000Z (over 2 years ago)
- Last Synced: 2024-05-22T19:32:15.341Z (6 months ago)
- Topics: rust, sat, sat-solver
- Language: Rust
- Homepage:
- Size: 52.7 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust-formalized-reasoning - rust-sat - SAT solver that accepts input in the DIMACS CNF file format. (Projects / Provers and Solvers)
README
rust-sat
========A SAT solver that accepts input in the DIMACS CNF file format. There are three different types of solvers. One that uses naive, chronological backtracking, one that uses watch lists and a final one that does non-chronological backtracking.
```
Usage: rust-sat [--solver TYPE]
rust-sat --helpOptions:
--solver TYPE Valid values: naive, watch, nonchro.
--help Show this message.
```