3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

bug fixes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-01-01 16:24:15 -08:00
parent 7dea0b855b
commit d91820fe51
12 changed files with 48 additions and 41 deletions

View file

@ -103,6 +103,7 @@ bool is_debug_enabled(const char * tag);
if (!((LHS) == (RHS))) { \
notify_assertion_violation(__FILE__, __LINE__, "Failed to verify: " #LHS " == " #RHS "\n"); \
std::cerr << "LHS value: " << (LHS) << "\nRHS value: " << (RHS) << "\n"; \
DEBUG_CODE(INVOKE_DEBUGGER();); \
exit(ERR_UNREACHABLE); \
}