Skip to content

Commit e539707

Browse files
authored
Update boolalg.py
1 parent 2657ac0 commit e539707

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

sympy/logic/boolalg.py

+6-11
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from sympy.core.singleton import Singleton, S
1717
from sympy.core.sorting import ordered
1818
from sympy.core.sympify import _sympy_converter, _sympify, sympify
19-
from sympy.utilities.iterables import sift, ibin, cartes
19+
from sympy.utilities.iterables import sift, ibin
2020
from sympy.utilities.misc import filldedent
2121

2222

@@ -125,17 +125,12 @@ def equals(self, other):
125125
126126
"""
127127
from sympy.logic.inference import satisfiable
128-
from sympy.core.symbol import Symbol
129-
130-
def ok(f):
131-
return isinstance(f, (BooleanFunction, Symbol)) and (not f.args or
132-
all(ok(a) for a in f.args))
133-
if not ok(self) or not ok(other):
134-
raise NotImplementedError('non-literal BooleanFunction')
128+
from sympy.core.relational import Relational
135129

136-
# simplification can remove redundant symbols
137-
args = [simplify_logic(i) for i in (self, other)]
138-
return not satisfiable(Not(Equivalent(*args)))
130+
if self.has(Relational) or other.has(Relational):
131+
raise NotImplementedError('handling of relationals')
132+
return self.atoms() == other.atoms() and \
133+
not satisfiable(Not(Equivalent(self, other)))
139134

140135
def to_nnf(self, simplify=True):
141136
# override where necessary

0 commit comments

Comments
 (0)