Skip to content

Commit

Permalink
Added DPLL and WalkSAT sections (#823)
Browse files Browse the repository at this point in the history
* Added dpll section

* Updated README.md

* Added WalkSAT section

* Updated README.md
  • Loading branch information
ad71 authored and norvig committed Mar 10, 2018
1 parent 4cc3509 commit c908058
Show file tree
Hide file tree
Showing 2 changed files with 850 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
| 7.10 | TT-Entails | `tt_entails` | [`logic.py`][logic] | Done | Included |
| 7.12 | PL-Resolution | `pl_resolution` | [`logic.py`][logic] | Done | Included |
| 7.14 | Convert to CNF | `to_cnf` | [`logic.py`][logic] | Done | Included |
| 7.15 | PL-FC-Entails? | `pl_fc_resolution` | [`logic.py`][logic] | Done | |
| 7.17 | DPLL-Satisfiable? | `dpll_satisfiable` | [`logic.py`][logic] | Done | |
| 7.18 | WalkSAT | `WalkSAT` | [`logic.py`][logic] | Done | |
| 7.15 | PL-FC-Entails? | `pl_fc_resolution` | [`logic.py`][logic] | Done | Included |
| 7.17 | DPLL-Satisfiable? | `dpll_satisfiable` | [`logic.py`][logic] | Done | Included |
| 7.18 | WalkSAT | `WalkSAT` | [`logic.py`][logic] | Done | Included |
| 7.20 | Hybrid-Wumpus-Agent | `HybridWumpusAgent` | | | |
| 7.22 | SATPlan | `SAT_plan` | [`logic.py`][logic] | Done | |
| 9 | Subst | `subst` | [`logic.py`][logic] | Done | |
Expand Down

0 comments on commit c908058

Please sign in to comment.