
Search found 2 matches
- Wed Oct 27, 2010 6:15 pm
- Forum: Common Lisp
- Topic: SAT solver
- Replies: 3
- Views: 3772
Re: SAT solver
I don't know how to start
please help me guys

- Wed Oct 27, 2010 11:48 am
- Forum: Common Lisp
- Topic: SAT solver
- Replies: 3
- Views: 3772
SAT solver
Hello , I have to do satisfibility slover program which accept CNF as list and return one model at least for CNF or nil of there is not model ? for example if function (SAT '(and (or :X (not :Y) :Z) (or :X :Z) (not :A) :B)) return ((:Z . T) (:B . T) (:A . NIL)) Any help i am stuck i have to do it AS...