3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

Added QF_BVFP logic alias for QF_FPBV

This commit is contained in:
Christoph M. Wintersteiger 2015-05-29 13:58:23 +01:00
parent 9de0e9087e
commit f2f6fc1994
3 changed files with 4 additions and 2 deletions

View file

@ -528,6 +528,7 @@ bool cmd_context::logic_has_arith_core(symbol const & s) const {
s == "LRA" ||
s == "QF_FP" ||
s == "QF_FPBV" ||
s == "QF_BVFP" ||
s == "HORN";
}
@ -547,6 +548,7 @@ bool cmd_context::logic_has_bv_core(symbol const & s) const {
s == "QF_AUFBV" ||
s == "QF_BVRE" ||
s == "QF_FPBV" ||
s == "QF_BVFP" ||
s == "HORN";
}