summaryrefslogtreecommitdiff
path: root/src/parser/tptp
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-08-23 10:10:48 -0700
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-08-23 12:10:48 -0500
commitf522d1e63e581cadeb987987ba3e3b0bd88f2e08 (patch)
tree4b6e5ba6cbc79f712cb60b6eb66cbba6b8f4edcb /src/parser/tptp
parentac7db6796f2255678d3b2e2e87940211f162223e (diff)
Use "filename" instead of "name" in SmtEngine::setInfo() (#2361)
Diffstat (limited to 'src/parser/tptp')
-rw-r--r--src/parser/tptp/Tptp.g2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/tptp/Tptp.g b/src/parser/tptp/Tptp.g
index 0c39bbaea..be155c425 100644
--- a/src/parser/tptp/Tptp.g
+++ b/src/parser/tptp/Tptp.g
@@ -249,7 +249,7 @@ parseCommand returns [CVC4::Command* cmd = NULL]
if(filename.substr(filename.length() - 2) == ".p") {
filename = filename.substr(0, filename.length() - 2);
}
- seq->addCommand(new SetInfoCommand("name", SExpr(filename)));
+ seq->addCommand(new SetInfoCommand("filename", SExpr(filename)));
if(PARSER_STATE->hasConjecture()) {
seq->addCommand(new QueryCommand(MK_CONST(bool(false))));
} else {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback