3
0
Fork 0
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:
Pierre Bouvier 2020-10-26 20:01:21 +01:00 committed by GitHub
parent 3ba857fb04
commit f3147d6e22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {