summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2016-01-06 00:10:36 -0800
committerTim King <taking@cs.nyu.edu>2016-01-06 00:10:36 -0800
commitd0ef178e46acefc03373add0ed9a99c657bd4f72 (patch)
treeaf80cffcda357e8f18d40f30b5857438aff99446 /src
parent774af8c91c94f74fec03bc60a4c29abf60f4a5de (diff)
Improving the documentation of the CVC command CONTINUE.
Diffstat (limited to 'src')
-rw-r--r--src/parser/cvc/Cvc.g4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parser/cvc/Cvc.g b/src/parser/cvc/Cvc.g
index efa51963a..5c477f2e2 100644
--- a/src/parser/cvc/Cvc.g
+++ b/src/parser/cvc/Cvc.g
@@ -79,6 +79,7 @@ tokens {
COUNTEREXAMPLE_TOK = 'COUNTEREXAMPLE';
COUNTERMODEL_TOK = 'COUNTERMODEL';
ARITH_VAR_ORDER_TOK = 'ARITH_VAR_ORDER';
+ CONTINUE_TOK = 'CONTINUE';
/* operators */
@@ -831,6 +832,9 @@ mainCommand[CVC4::Command*& cmd]
| ARITH_VAR_ORDER_TOK LPAREN formula[f] ( COMMA formula[f] )* RPAREN
{ UNSUPPORTED("ARITH_VAR_ORDER command"); }
+ | CONTINUE_TOK
+ { UNSUPPORTED("CONTINUE command"); }
+
| toplevelDeclaration[cmd]
;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback