3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-07 07:45:46 +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

@ -182,7 +182,7 @@ struct check_logic::imp {
m_bvs = true;
m_quantifiers = true;
}
else if (logic == "QF_S") {
else if (logic == "QF_S" || logic == "QF_SLIA") {
m_uf = true;
m_bvs = true;
m_ints = true;