aboutsummaryrefslogtreecommitdiffstats
path: root/src/verit/veritParser.mly
diff options
context:
space:
mode:
authorQGarchery <QGarchery@users.noreply.github.com>2018-11-30 09:06:02 +0100
committerckeller <ckeller@users.noreply.github.com>2018-11-30 09:06:02 +0100
commit3fdc107b26f475c8fe8b7052de826405b88c14b3 (patch)
tree9dadc6caa013e2ec83537669ce26ecd8562c594d /src/verit/veritParser.mly
parentdc28a36ee4b5f673e875b3435618d60d63cf8bea (diff)
downloadsmtcoq-3fdc107b26f475c8fe8b7052de826405b88c14b3.tar.gz
smtcoq-3fdc107b26f475c8fe8b7052de826405b88c14b3.zip
forall declaration can now begin with a negation (#23)
Solves issue #21
Diffstat (limited to 'src/verit/veritParser.mly')
-rw-r--r--src/verit/veritParser.mly2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verit/veritParser.mly b/src/verit/veritParser.mly
index 4ea6cd6..3c675ee 100644
--- a/src/verit/veritParser.mly
+++ b/src/verit/veritParser.mly
@@ -182,7 +182,7 @@ var_decl_list:
;
forall_decl:
- | FORALL LPAR var_decl_list RPAR name_term { clear_qvar (); false, Form (Fapp (Fforall $3, [|lit_of_atom_form_lit rf $5|])) }
+ | FORALL LPAR var_decl_list RPAR blit { clear_qvar (); false, Form (Fapp (Fforall $3, [|lit_of_atom_form_lit rf $5|])) }
;
term: /* returns a bool * (SmtAtom.Form.pform or SmtAtom.hatom), the boolean indicates if we should declare the term or not */