3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 14:25:46 +00:00
This commit is contained in:
Nikolaj Bjorner 2016-08-20 03:53:55 -07:00
commit 439e8e6b04
10 changed files with 47 additions and 15 deletions

View file

@ -580,7 +580,7 @@ bool cmd_context::logic_has_bv() const {
}
bool cmd_context::logic_has_seq_core(symbol const& s) const {
return s == "QF_BVRE" || s == "QF_S";
return s == "QF_BVRE" || s == "QF_S" || s == "ALL";
}
bool cmd_context::logic_has_seq() const {
@ -588,7 +588,7 @@ bool cmd_context::logic_has_seq() const {
}
bool cmd_context::logic_has_fpa_core(symbol const& s) const {
return s == "QF_FP" || s == "QF_FPBV" || s == "QF_BVFP";
return s == "QF_FP" || s == "QF_FPBV" || s == "QF_BVFP" || s == "ALL";
}
bool cmd_context::logic_has_fpa() const {
@ -705,7 +705,7 @@ void cmd_context::init_external_manager() {
}
bool cmd_context::supported_logic(symbol const & s) const {
return s == "QF_UF" || s == "UF" ||
return s == "QF_UF" || s == "UF" || s == "ALL" ||
logic_has_arith_core(s) || logic_has_bv_core(s) ||
logic_has_array_core(s) || logic_has_seq_core(s) ||
logic_has_horn(s) || logic_has_fpa_core(s);