mirror of
https://github.com/Z3Prover/z3
synced 2026-05-22 09:59:36 +00:00
Make Groebner basis computation interruptable. Exponsed in issue #269
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2a95a77706
commit
6b82b949cf
5 changed files with 52 additions and 25 deletions
|
|
@ -176,10 +176,11 @@ namespace smt {
|
|||
bindings.set(num_decls - i - 1, sk_value);
|
||||
}
|
||||
|
||||
TRACE("model_checker", tout << q->get_qid() << " found (use_inv: " << use_inv << ") new instance:\n";
|
||||
TRACE("model_checker", tout << q->get_qid() << " found (use_inv: " << use_inv << ") new instance: ";
|
||||
for (unsigned i = 0; i < num_decls; i++) {
|
||||
tout << mk_ismt2_pp(bindings[i], m_manager) << "\n";
|
||||
});
|
||||
tout << mk_ismt2_pp(bindings[i], m_manager) << " ";
|
||||
}
|
||||
tout << "\n";);
|
||||
|
||||
for (unsigned i = 0; i < num_decls; i++)
|
||||
m_new_instances_bindings.push_back(bindings[i]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue