5

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

user658648
  • 139
  • 1
  • 4

1 Answers1

1

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

A T
  • 13,008
  • 21
  • 97
  • 158