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: about 1 month ago
JSON representation

SAT solving with Rust

Lists

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 --help

Options:
--solver TYPE Valid values: naive, watch, nonchro.
--help Show this message.
```