mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
include QF_SNIA
This commit is contained in:
parent
943d881340
commit
f3e7c8c9df
|
@ -65,6 +65,7 @@ bool smt_logics::logic_has_arith(symbol const & s) {
|
|||
s == "QF_UFNIA" ||
|
||||
s == "QF_UFNIRA" ||
|
||||
s == "QF_BVRE" ||
|
||||
s == "QF_SNIA" ||
|
||||
s == "ALIA" ||
|
||||
s == "AUFLIA" ||
|
||||
s == "AUFLIRA" ||
|
||||
|
@ -136,11 +137,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" || s == "QF_SLIA" || logic_is_all(s);
|
||||
return s == "QF_BVRE" || logic_has_str(s);
|
||||
}
|
||||
|
||||
bool smt_logics::logic_has_str(symbol const & s) {
|
||||
return s == "QF_S" || s == "QF_SLIA" || logic_is_all(s);
|
||||
return s == "QF_S" || s == "QF_SLIA" || s == "QF_SNIA" || logic_is_all(s);
|
||||
}
|
||||
|
||||
bool smt_logics::logic_has_fpa(symbol const & s) {
|
||||
|
|
Loading…
Reference in a new issue