3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 21:16:02 +00:00

Merge branch 'ilana' into parallel-solving

This commit is contained in:
Nikolaj Bjorner 2025-07-28 19:53:51 -07:00 committed by GitHub
commit 4eeb98d294
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 129 additions and 0 deletions

View file

@ -92,6 +92,7 @@ namespace smt {
sl.push_child(&(new_m->limit()));
}
auto cube = [](context& ctx, expr_ref_vector& lasms, expr_ref& c) {
lookahead lh(ctx);
c = lh.choose();
@ -122,6 +123,7 @@ namespace smt {
expr* e = ctx.bool_var2expr(node.key);
if (!e) continue;
expr_ref lit(e, m);
conjuncts.push_back(lit);