3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 04:56:03 +00:00

code and notes

This commit is contained in:
Nikolaj Bjorner 2025-08-11 10:39:09 -07:00
parent 6044389446
commit bffefc5331
3 changed files with 31 additions and 6 deletions

View file

@ -46,6 +46,7 @@ namespace smt {
unsigned m_max_batch_size = 10;
unsigned m_exception_code = 0;
std::string m_exception_msg;
obj_hashtable<expr> m_assumptions_used; // assumptions used in unsat cores, to be used in final core
// called from batch manager to cancel other workers if we've reached a verdict
void cancel_workers() {
@ -76,6 +77,7 @@ namespace smt {
// the batch manager re-enqueues unprocessed cubes and optionally splits them using the split_atoms returned by this and workers.
//
void return_cubes(ast_translation& l2g, vector<expr_ref_vector>const& cubes, expr_ref_vector const& split_atoms);
void report_assumption_used(ast_translation& l2g, expr* assumption);
void share_lemma(ast_translation& l2g, expr* lemma);
lbool get_result() const;
};