Implemented a constraint satisfaction problem solver using backtracking and forward checking.
This project is a constraint satisfaction problem solver using backtracking and forward checking.
The CSP chooses variable according to the most constrained variable heuristic, breaking ties using the most constraining variable heuristic.
If more than one variable remains after applying these heuristics, break ties alphabetically.
The CSP chooses values according to least constraining value heuristic.
The “Test Cases” folder contains 3 sample test cases.
Command line arguments :
Example arguments:
python main3.py ex1.var ex1.con fc
python main3.py ex2.var ex2.con none