|
16 | 16 | from sympy.core.singleton import Singleton, S
|
17 | 17 | from sympy.core.sorting import ordered
|
18 | 18 | 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 |
20 | 20 | from sympy.utilities.misc import filldedent
|
21 | 21 |
|
22 | 22 |
|
@@ -125,17 +125,12 @@ def equals(self, other):
|
125 | 125 |
|
126 | 126 | """
|
127 | 127 | 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 |
135 | 129 |
|
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))) |
139 | 134 |
|
140 | 135 | def to_nnf(self, simplify=True):
|
141 | 136 | # override where necessary
|
|
0 commit comments