Ecosyste.ms: Awesome

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

https://github.com/Rose1917/bool2dimacs


https://github.com/Rose1917/bool2dimacs

Last synced: about 1 month ago
JSON representation

Lists

README

        

#### What is this
an end-to-end cnf parser.

#### Usage
```rust
use bool2cnf::parse_dimacs

fn test_parse(){
let input = "A&&(B||!(D&&E))";
println!("raw string:{}", input);
let p = parse_dimacs(input);
println!("dimacs:\n{}", p);
}

```

#### Todo
- [ ] Added customized operator
- [ ] An optional sat-solver