Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
smichr authored Dec 12, 2024
1 parent d3dc506 commit 2657ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sympy/logic/boolalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def ok(f):
raise NotImplementedError('non-literal BooleanFunction')

# simplification can remove redundant symbols
args = [simplify_logic(simpler(i)) for i in (self, other)]
args = [simplify_logic(i) for i in (self, other)]
return not satisfiable(Not(Equivalent(*args)))

def to_nnf(self, simplify=True):
Expand Down

0 comments on commit 2657ac0

Please sign in to comment.