projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b0b4f5
)
Fix warning in TPTP parser (#5752)
author
Haniel Barbosa
<hanielbbarbosa@gmail.com>
Thu, 7 Jan 2021 20:06:33 +0000
(17:06 -0300)
committer
GitHub
<noreply@github.com>
Thu, 7 Jan 2021 20:06:33 +0000
(14:06 -0600)
src/parser/tptp/Tptp.g
patch
|
blob
|
history
diff --git
a/src/parser/tptp/Tptp.g
b/src/parser/tptp/Tptp.g
index 6b66b5422785722ba32582ae16e744b0657dfb71..0c16e472dd81881875b3e8a3dabf3ab129791b50 100644
(file)
--- a/
src/parser/tptp/Tptp.g
+++ b/
src/parser/tptp/Tptp.g
@@
-921,7
+921,7
@@
thfQuantifier[CVC4::api::Kind& kind]
| LAMBDA_TOK { kind = api::LAMBDA; }
| CHOICE_TOK
{
-
UNSUPPORTED("Choice operator");
+ UNSUPPORTED("Choice operator");
}
| DEF_DESC_TOK
{
@@
-1621,7
+1621,7
@@
NOT_TOK : '~';
FORALL_TOK : '!';
EXISTS_TOK : '?';
LAMBDA_TOK : '^';
-
WITNESS
_TOK : '@+';
+
CHOICE
_TOK : '@+';
DEF_DESC_TOK : '@-';
AND_TOK : '&';
IFF_TOK : '<=>';