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:
parent
21c4d451d8
commit
6f0a367357
4 changed files with 14 additions and 7 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue