Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting First order logic to CNF

Is there a existing implementation in C/c++/java to convert first order logic to CNF ?

like image 216
user658648 Avatar asked Nov 14 '22 20:11

user658648


1 Answers

It might be more efficient to use something like: Boolean Normal Form

For implementation, I recommend doing it yourself for something simple like this. An efficient method has psuedo code + explanation here

like image 191
A T Avatar answered Dec 10 '22 12:12

A T