summaryrefslogtreecommitdiff
path: root/grammars
diff options
context:
space:
mode:
authoraarne <unknown>2004-10-26 11:53:22 +0000
committeraarne <unknown>2004-10-26 11:53:22 +0000
commit8be82a3936934ba123abba8a9a68da0eaac32620 (patch)
tree3d45bb03adf7b559dc9f24030d23e06262254527 /grammars
parent2b9e31455d5a5e93b5d52945a60a391a5c3adc2c (diff)
constraint bug fix
Diffstat (limited to 'grammars')
-rw-r--r--grammars/logic/Logic.gf2
1 files changed, 1 insertions, 1 deletions
diff --git a/grammars/logic/Logic.gf b/grammars/logic/Logic.gf
index aed631f04..41fd5cef8 100644
--- a/grammars/logic/Logic.gf
+++ b/grammars/logic/Logic.gf
@@ -81,7 +81,7 @@ def
ImplE _ _ (ImplI _ _ b) a = b a ;
NegE _ (NegI _ b) a = b a ;
UnivE _ _ (UnivI _ _ b) a = b a ;
- ExistE _ _ _ (ExistI A B a b) d = d a b ;
+ ExistE _ _ _ (ExistI _ _ a b) d = d a b ;
-- Hypo and Pron are identities
Hypo _ a = a ;