erohkohl/n-queens-sat
Modelling n-queens problem as conjunctive normal form and solving it with DPLL algorithm. This project should made me familiar with Rust and the test driven approach.
Rust
Issues
- 0
- 0
- 0
Solve n-queens problem with n=8 and print board.
#12 opened by erohkohl - 0
- 1
Configure codecov to not cover test cases and only calculate percentage of src.
#7 opened by erohkohl - 0
- 0
CNF: check if model solves cnf
#10 opened by erohkohl - 0
Replace all vectors in DPLL algorithm with HashSet, therefore clause order is not longer relevant.
#1 opened by erohkohl - 0
Custom struct CNF which includes: trim_cnf, equals, check_model and HashSet with clauses.
#9 opened by erohkohl - 0
- 0
Conflict driven clause learning
#5 opened by erohkohl - 0
Correct spelling: clausel to clause
#4 opened by erohkohl