mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
Fix: QF_UFDT has UF (#4755)
This commit is contained in:
parent
3ba857fb04
commit
f3147d6e22
|
@ -148,7 +148,7 @@ bool smt_logics::logic_has_fpa(symbol const & s) {
|
|||
}
|
||||
|
||||
bool smt_logics::logic_has_uf(symbol const & s) {
|
||||
return s == "QF_UF" || s == "UF" || s == "QF_DT" || s == "SMTFD";
|
||||
return s == "QF_UF" || s == "UF" || s == "QF_UFDT" || s == "SMTFD";
|
||||
}
|
||||
|
||||
bool smt_logics::logic_has_horn(symbol const& s) {
|
||||
|
|
Loading…
Reference in a new issue