mirror of
https://github.com/Z3Prover/z3
synced 2025-05-06 15:25:46 +00:00
enforce arithmetic normalization
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0d5cfe9292
commit
82a937d1af
5 changed files with 27 additions and 12 deletions
|
@ -150,8 +150,9 @@ namespace api {
|
|||
|
||||
void context::set_error_code(Z3_error_code err) {
|
||||
m_error_code = err;
|
||||
if (err != Z3_OK)
|
||||
if (err != Z3_OK) {
|
||||
invoke_error_handler(err);
|
||||
}
|
||||
}
|
||||
|
||||
void context::check_searching() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue