aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2015-10-24 12:07:39 +0200
committerCamil Staps2015-10-24 12:07:39 +0200
commit6530eaf3b0311d83845c7aceac3514a60436235b (patch)
treeb8eaebcbdd949a116bfda9eb1b376cebc361c3d3
parentBugfixes in show functions (parentheses) (diff)
Fixing last commit; parentheses chained implications
-rw-r--r--Logic.icl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Logic.icl b/Logic.icl
index 03cbf1a..676744e 100644
--- a/Logic.icl
+++ b/Logic.icl
@@ -215,8 +215,8 @@ binds_stronger _ And = False // And is left-associative
binds_stronger And _ = True
binds_stronger Or _ = True // The rest is right-associative
binds_stronger _ Or = False
-binds_stronger _ Impl = False
binds_stronger Impl _ = True
+binds_stronger _ Impl = False
binds_stronger Equiv Equiv = True
all_atoms :: Expr -> [AtomName]