3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

add SMTLIB2.6 names for QF_SLIA and string-int conversion operators (#4341)

This commit is contained in:
Murphy Berzish 2020-05-16 16:31:47 -05:00 committed by GitHub
parent 21c4d451d8
commit 6f0a367357
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 7 deletions

View file

@ -85,6 +85,7 @@ bool smt_logics::logic_has_arith(symbol const & s) {
s == "QF_FPBV" ||
s == "QF_BVFP" ||
s == "QF_S" ||
s == "QF_SLIA" ||
logic_is_allcsp(s) ||
s == "QF_FD" ||
s == "HORN" ||
@ -135,11 +136,11 @@ bool smt_logics::logic_has_array(symbol const & s) {
}
bool smt_logics::logic_has_seq(symbol const & s) {
return s == "QF_BVRE" || s == "QF_S" || logic_is_allcsp(s);
return s == "QF_BVRE" || s == "QF_S" || s == "QF_SLIA" || logic_is_allcsp(s);
}
bool smt_logics::logic_has_str(symbol const & s) {
return s == "QF_S" || logic_is_allcsp(s);
return s == "QF_S" || s == "QF_SLIA" || logic_is_allcsp(s);
}
bool smt_logics::logic_has_fpa(symbol const & s) {