mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 16:55:47 +00:00
Made quantifier-related parts of smt::model_finder and smt::model_checker interruptable.
Fixes #178
This commit is contained in:
parent
0e886cfe5e
commit
b9e273800c
6 changed files with 54 additions and 4 deletions
|
@ -51,6 +51,7 @@ namespace smt {
|
|||
unsigned m_iteration_idx;
|
||||
proto_model * m_curr_model;
|
||||
obj_map<expr, expr *> m_value2expr;
|
||||
bool m_cancel;
|
||||
friend class instantiation_set;
|
||||
|
||||
void init_aux_context();
|
||||
|
@ -92,6 +93,8 @@ namespace smt {
|
|||
void restart_eh();
|
||||
|
||||
void reset();
|
||||
|
||||
void set_cancel(bool f) { m_cancel = f; }
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue