Skip to content

Commit

Permalink
Do not rely on clause ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdrake committed Feb 18, 2015
1 parent a1fcfe2 commit e12a883
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyeda/boolalg/bdd.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ def bdd2expr(bdd, conj=False):
For example::
>>> a, b = map(bddvar, 'ab')
>>> bdd2expr(~a & b | a & ~b)
Or(And(~a, b), And(a, ~b))
>>> bdd2expr(~a | b)
Or(~a, And(a, b))
"""
if conj:
outer, inner = (And, Or)
Expand All @@ -167,7 +167,7 @@ def upoint2bddpoint(upoint):
"""Convert an untyped point into a BDD point.
.. seealso::
For definitions of points an untyped points,
For definitions of points and untyped points,
see the :mod:`pyeda.boolalg.boolfunc` module.
"""
point = dict()
Expand Down

0 comments on commit e12a883

Please sign in to comment.