summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-05-02 21:27:53 -0500
committerGitHub <noreply@github.com>2018-05-02 21:27:53 -0500
commit5ed0a1b8dd73e339189df1556fa4bdbf95767245 (patch)
tree1b2801bafa942e717b7811f3d31f713fbde1f0bf /src/parser
parent716ce9168d846ea991f8404a78aeb1ccccfbce14 (diff)
Support HORN logic string (#1849)
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/smt1/smt1.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser/smt1/smt1.cpp b/src/parser/smt1/smt1.cpp
index c3365eb13..047373436 100644
--- a/src/parser/smt1/smt1.cpp
+++ b/src/parser/smt1/smt1.cpp
@@ -61,6 +61,7 @@ std::unordered_map<std::string, Smt1::Logic> Smt1::newLogicMap() {
logicMap["ALL_SUPPORTED"] = ALL_SUPPORTED;
logicMap["QF_ALL"] = QF_ALL_SUPPORTED;
logicMap["ALL"] = ALL_SUPPORTED;
+ logicMap["HORN"] = ALL_SUPPORTED;
return logicMap;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback