Skip to content

Commit

Permalink
bug in fact parser with negations
Browse files Browse the repository at this point in the history
  • Loading branch information
dyumanaditya committed Aug 6, 2024
1 parent 7aa3180 commit b71ee9e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyreason/scripts/utils/fact_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def parse_fact(fact_text):
pred_comp = f
if pred_comp[0] == '~':
bound = 'False'
pred_comp = pred_comp[1:]
else:
bound = 'True'

Expand Down

0 comments on commit b71ee9e

Please sign in to comment.