mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
handle null declarations for kind
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
124e963b10
commit
77d68409c2
2 changed files with 7 additions and 1 deletions
|
@ -850,6 +850,7 @@ namespace smt {
|
|||
}
|
||||
|
||||
bool theory_bv::internalize_term(app * term) {
|
||||
try {
|
||||
SASSERT(term->get_family_id() == get_family_id());
|
||||
TRACE("bv", tout << "internalizing term: " << mk_bounded_pp(term, get_manager()) << "\n";);
|
||||
if (approximate_term(term)) {
|
||||
|
@ -907,6 +908,11 @@ namespace smt {
|
|||
UNREACHABLE();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
catch (z3_exception& ex) {
|
||||
IF_VERBOSE(1, verbose_stream() << ex.msg() << "\n";);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
#define MK_NO_OVFL(NAME, OP) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue