summaryrefslogtreecommitdiff
path: root/src/api/cvc4cpp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/cvc4cpp.cpp')
-rw-r--r--src/api/cvc4cpp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/cvc4cpp.cpp b/src/api/cvc4cpp.cpp
index 24cd762a1..b27cc48b4 100644
--- a/src/api/cvc4cpp.cpp
+++ b/src/api/cvc4cpp.cpp
@@ -4384,9 +4384,9 @@ void Solver::setInfo(const std::string& keyword, const std::string& value) const
"'notes', 'smt-lib-version' or 'status'";
CVC4_API_ARG_CHECK_EXPECTED(keyword != "smt-lib-version" || value == "2"
|| value == "2.0" || value == "2.5"
- || value == "2.6" || value == "2.6.1",
+ || value == "2.6",
value)
- << "'2.0', '2.5', '2.6' or '2.6.1'";
+ << "'2.0', '2.5', '2.6'";
CVC4_API_ARG_CHECK_EXPECTED(keyword != "status" || value == "sat"
|| value == "unsat" || value == "unknown",
value)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback