mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
add bit-matrix, avoid flattening and/or after bit-blasting, split pdd_grobner into solver/simplifier, add xlin, add smtfd option for incremental mode logic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
09dbacdf50
commit
1d0572354b
17 changed files with 991 additions and 386 deletions
|
@ -107,6 +107,7 @@ bool smt_logics::logic_has_bv(symbol const & s) {
|
|||
s == "QF_BVFP" ||
|
||||
logic_is_allcsp(s) ||
|
||||
s == "QF_FD" ||
|
||||
s == "SMTFD" ||
|
||||
s == "HORN";
|
||||
}
|
||||
|
||||
|
@ -129,6 +130,7 @@ bool smt_logics::logic_has_array(symbol const & s) {
|
|||
logic_is_allcsp(s) ||
|
||||
s == "QF_ABV" ||
|
||||
s == "QF_AUFBV" ||
|
||||
s == "SMTFD" ||
|
||||
s == "HORN";
|
||||
}
|
||||
|
||||
|
@ -145,7 +147,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";
|
||||
return s == "QF_UF" || s == "UF" || s == "QF_DT" || s == "SMTFD";
|
||||
}
|
||||
|
||||
bool smt_logics::logic_has_horn(symbol const& s) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue