Skip to content

Commit

Permalink
Update 2llm.rst
Browse files Browse the repository at this point in the history
Convert f1 to DNF before sending to espresso_exprs? Because I was getting "ValueError: expected a DNF expression" without it.
  • Loading branch information
nadiahpk committed Jun 17, 2015
1 parent 372cf63 commit f0c9038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/2llm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Consider the three-input function

To use Espresso to perform minimization::

>>> f1m, = espresso_exprs(f1)
>>> f1m, = espresso_exprs(f1.to_dnf())
>>> f1m
Or(And(~a, ~b), And(a, b), And(~b, c))

Expand Down

0 comments on commit f0c9038

Please sign in to comment.