I a totally new to sat4j solver..

it says some cnf file should be given as input

is there any possible way to give the rule as input and get whether it is satisfiable or not?

my rule will be of the kind

alt text

Can ssomeone help me how to solve this using sat4j solver?

link|improve this question

79% accept rate
Please provide more details. What exactly where you doing? – larsmans Oct 15 '10 at 19:01
I have to compare 2 ontologies, create an expression like this and check whether it is satisfiable, i dont have any idea on SAT solver or SMT solver, which one would handle expressions like these? and which will be better and easier ti use? – karthi Oct 16 '10 at 4:10
I don't know what an SMT solver is, but SAT should do the trick. What is your input format? – larsmans Oct 17 '10 at 11:12
the above expression is my input.. but sat solver asks for input in cnf file.. is there any converter to convert this expression to cnf file? – karthi Oct 17 '10 at 12:36
feedback

1 Answer

up vote 1 down vote accepted

Did you review the SAT4J Howto on their website? It includes a link to a Postscript document detailing the semantics of the CNF format. The format seems to support all the operators you use in your example, except "<->", but that just might be an omission in this specific "unofficial" document.

link|improve this answer
yes.. but is there any program to convert given expression automatically to CNF format? as I'll be generating many such expressions and it cant be manually done.. And what is the difference between SMT solver and SAT solver? – karthi Oct 16 '10 at 4:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.