diff options
author | Camil Staps | 2015-10-24 12:07:39 +0200 |
---|---|---|
committer | Camil Staps | 2015-10-24 12:07:39 +0200 |
commit | 6530eaf3b0311d83845c7aceac3514a60436235b (patch) | |
tree | b8eaebcbdd949a116bfda9eb1b376cebc361c3d3 | |
parent | Bugfixes in show functions (parentheses) (diff) |
Fixing last commit; parentheses chained implications
-rw-r--r-- | Logic.icl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] |