Przeglądaj źródła

link the dpll source from the readme

Lucas Stadler 10 lat temu
rodzic
commit
d052a48bd9
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      rust/solve/README.md

+ 1 - 1
rust/solve/README.md

@ -11,7 +11,7 @@ code related to constraint programming at the same time.
11 11
There are a few things here:
12 12
13 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 15
- a binary that uses these things to parse CNFs on stdin and solves them
16 16
    using the DPLL implementation
17 17