mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
work around regression with use of mk_app_core, returning BR_FAILED if nothing is rewritten
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
648a531950
commit
e13b61eae8
3 changed files with 8 additions and 8 deletions
|
@ -150,7 +150,7 @@ bool smt_logics::logic_has_horn(symbol const& s) {
|
|||
}
|
||||
|
||||
bool smt_logics::logic_has_pb(symbol const& s) {
|
||||
return s == "QF_FD" || s == "ALL";
|
||||
return s == "QF_FD" || s == "ALL" || s == "HORN";
|
||||
}
|
||||
|
||||
bool smt_logics::logic_has_datatype(symbol const& s) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue