mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
enable parallel under scopes, preview in sequential mode before incurrring copy overhead
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3da3b41786
commit
566d3070fa
3 changed files with 2 additions and 11 deletions
|
@ -161,7 +161,6 @@ namespace smt {
|
|||
src_ctx.pop_to_base_lvl();
|
||||
|
||||
if (!override_base && src_ctx.m_base_lvl > 0) {
|
||||
INVOKE_DEBUGGER();
|
||||
throw default_exception("Cloning contexts within a user-scope is not allowed");
|
||||
}
|
||||
SASSERT(src_ctx.m_base_lvl == 0 || override_base);
|
||||
|
@ -285,8 +284,7 @@ namespace smt {
|
|||
// m_false_enode->mark_as_interpreted();
|
||||
}
|
||||
|
||||
void context::set_progress_callback(progress_callback *cb)
|
||||
{
|
||||
void context::set_progress_callback(progress_callback *cb) {
|
||||
m_progress_callback = cb;
|
||||
}
|
||||
|
||||
|
|
|
@ -3470,7 +3470,7 @@ bool theory_seq::solve_nc(unsigned idx) {
|
|||
|
||||
if (m.is_eq(c, a, b)) {
|
||||
literal eq = mk_eq(a, b, false);
|
||||
propagate_lit(deps, 0, nullptr, ~eq);
|
||||
propagate_lit(deps, 0, nullptr, ~eq);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue