We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a63b50 commit a025fddCopy full SHA for a025fdd
nnf/__init__.py
@@ -575,7 +575,10 @@ def neg(node: NNF) -> NNF:
575
return neg(self)
576
577
def to_CNF(self, simplify: bool = True) -> 'And[Or[Var]]':
578
- """Compile theory to a semantically equivalent CNF formula."""
+ """Compile theory to a semantically equivalent CNF formula.
579
+
580
+ :param simplify: If True, simplify clauses even if that means
581
+ eliminating variables."""
582
return tseitin.to_CNF(self, simplify)
583
584
def _cnf_satisfiable(self) -> bool:
0 commit comments