Просмотр исходного кода

link the dpll source from the readme

Lucas Stadler лет назад: 10
Родитель
Сommit
d052a48bd9
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      rust/solve/README.md

+ 1 - 1
rust/solve/README.md

11
There are a few things here:
11
There are a few things here:
12
12
13
- an incomplete parser for CNFs in DIMAC format ([./src/cnf.rs](./src/cnf.rs))
13
- an incomplete parser for CNFs in DIMAC format ([./src/cnf.rs](./src/cnf.rs))
14
- a naïve implementation of the DPLL algorithm
14
- a naïve implementation of the DPLL algorithm ([./src/dpll.rs](./src/dpll.rs))
15
- a binary that uses these things to parse CNFs on stdin and solves them
15
- a binary that uses these things to parse CNFs on stdin and solves them
16
    using the DPLL implementation
16
    using the DPLL implementation
17
17