Skip to content

Commit

Permalink
fix <>
Browse files Browse the repository at this point in the history
  • Loading branch information
rkaminsk committed Sep 26, 2019
1 parent e82bc67 commit 6925cda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions telingo/theory/body.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,10 +315,10 @@ def do_translate(self, ctx, step, data):
lhs = -lhs
make_disjunction(ctx.backend, lit, lhs, rhs)
elif self.__operator == "<>":
ctx.backend.add_rule([], [ lit, rhs, lhs])
ctx.backend.add_rule([], [ lit, -rhs, -lhs])
ctx.backend.add_rule([], [-lit, rhs, -lhs])
ctx.backend.add_rule([], [-lit, -rhs, lhs])
ctx.backend.add_rule([], [-lit, rhs, lhs])
ctx.backend.add_rule([], [-lit, -rhs, -lhs])
ctx.backend.add_rule([], [ lit, rhs, -lhs])
ctx.backend.add_rule([], [ lit, -rhs, lhs])

# Temporal Formulas {{{1

Expand Down

0 comments on commit 6925cda

Please sign in to comment.