mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
merge
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
22b5daf85e
commit
080be7a2af
|
@ -1826,7 +1826,7 @@ _lib.Z3_set_error_handler.argtypes = [ContextObj, _error_handler_type]
|
||||||
|
|
||||||
push_eh_type = ctypes.CFUNCTYPE(None, ctypes.c_void_p)
|
push_eh_type = ctypes.CFUNCTYPE(None, ctypes.c_void_p)
|
||||||
pop_eh_type = ctypes.CFUNCTYPE(None, ctypes.c_void_p, ctypes.c_uint)
|
pop_eh_type = ctypes.CFUNCTYPE(None, ctypes.c_void_p, ctypes.c_uint)
|
||||||
fixed_eh_type = ctypes.CFUNCTYPE(None, ctypes.c_void_p, ctypes.c_uint, ctypes.c_void_p)
|
fixed_eh_type = ctypes.CFUNCTYPE(None, ctypes.c_void_p, ctypes.c_void_p, ctypes.c_uint, ctypes.c_void_p)
|
||||||
fresh_eh_type = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p)
|
fresh_eh_type = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p)
|
||||||
|
|
||||||
_lib.Z3_solver_propagate_init.restype = None
|
_lib.Z3_solver_propagate_init.restype = None
|
||||||
|
|
|
@ -899,7 +899,7 @@ extern "C" {
|
||||||
init_solver(c, s);
|
init_solver(c, s);
|
||||||
std::function<void(void*)> _push = push_eh;
|
std::function<void(void*)> _push = push_eh;
|
||||||
std::function<void(void*,unsigned)> _pop = pop_eh;
|
std::function<void(void*,unsigned)> _pop = pop_eh;
|
||||||
std::function<void(void*,unsigned,expr*)> _fixed = (void(*)(void*,unsigned,expr*))fixed_eh;
|
std::function<void(void*,solver::propagate_callback*,unsigned,expr*)> _fixed = (void(*)(void*,solver::propagate_callback*,unsigned,expr*))fixed_eh;
|
||||||
std::function<void*(void*)> _fresh = fresh_eh;
|
std::function<void*(void*)> _fresh = fresh_eh;
|
||||||
to_solver_ref(s)->user_propagate_init(user_context, _fixed, _push, _pop, _fresh);
|
to_solver_ref(s)->user_propagate_init(user_context, _fixed, _push, _pop, _fresh);
|
||||||
Z3_CATCH;
|
Z3_CATCH;
|
||||||
|
@ -913,11 +913,11 @@ extern "C" {
|
||||||
Z3_CATCH_RETURN(0);
|
Z3_CATCH_RETURN(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Z3_API Z3_solver_propagate_consequence(Z3_context c, Z3_solver s, unsigned sz, unsigned const* ids, Z3_ast conseq) {
|
void Z3_API Z3_solver_propagate_consequence(Z3_context c, Z3_solver_callback s, unsigned sz, unsigned const* ids, Z3_ast conseq) {
|
||||||
Z3_TRY;
|
Z3_TRY;
|
||||||
LOG_Z3_solver_propagate_consequence(c, s, sz, ids, conseq);
|
LOG_Z3_solver_propagate_consequence(c, s, sz, ids, conseq);
|
||||||
RESET_ERROR_CODE();
|
RESET_ERROR_CODE();
|
||||||
to_solver_ref(s)->user_propagate_consequence(sz, ids, to_expr(conseq));
|
reinterpret_cast<solver::propagate_callback*>(s)->propagate(sz, ids, to_expr(conseq));
|
||||||
Z3_CATCH;
|
Z3_CATCH;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10513,13 +10513,16 @@ def user_prop_push(ctx):
|
||||||
def user_prop_pop(ctx, num_scopes):
|
def user_prop_pop(ctx, num_scopes):
|
||||||
_user_propagate_bases[ctx].pop(num_scopes)
|
_user_propagate_bases[ctx].pop(num_scopes)
|
||||||
|
|
||||||
def user_prop_fixed(ctx, id, value):
|
def user_prop_fixed(ctx, cb, id, value):
|
||||||
prop = _user_propagate_bases[ctx]
|
prop = _user_propagate_bases[ctx]
|
||||||
|
prop.cb = cb
|
||||||
prop.fixed(id, _to_expr_ref(ctypes.c_void_p(value), prop.ctx))
|
prop.fixed(id, _to_expr_ref(ctypes.c_void_p(value), prop.ctx))
|
||||||
|
prop.cb = None
|
||||||
|
|
||||||
def user_prop_fresh(ctx):
|
def user_prop_fresh(ctx):
|
||||||
prop = _user_propagate_bases[ctx]
|
prop = _user_propagate_bases[ctx]
|
||||||
new_prop = prop.fresh()
|
new_prop = UsePropagateBase(None, prop.ctx)
|
||||||
|
_user_prop_bases[new_prop.id] = new_prop.fresh()
|
||||||
return ctypes.c_void_p(new_prop.id)
|
return ctypes.c_void_p(new_prop.id)
|
||||||
|
|
||||||
|
|
||||||
|
@ -10530,11 +10533,13 @@ _user_prop_fresh = fresh_eh_type(user_prop_fresh)
|
||||||
|
|
||||||
class UserPropagateBase:
|
class UserPropagateBase:
|
||||||
|
|
||||||
def __init__(self, s):
|
def __init__(self, s, ctx = None):
|
||||||
self.id = len(_user_propagate_bases) + 3
|
self.id = len(_user_propagate_bases) + 3
|
||||||
self.solver = s
|
self.solver = s
|
||||||
self.ctx = s.ctx
|
self.ctx = s.ctx if s is not None else ctx
|
||||||
|
self.cb = None
|
||||||
_user_propagate_bases[self.id] = self
|
_user_propagate_bases[self.id] = self
|
||||||
|
if s:
|
||||||
Z3_solver_propagate_init(s.ctx.ref(),
|
Z3_solver_propagate_init(s.ctx.ref(),
|
||||||
s.solver,
|
s.solver,
|
||||||
ctypes.c_void_p(self.id),
|
ctypes.c_void_p(self.id),
|
||||||
|
@ -10552,18 +10557,22 @@ class UserPropagateBase:
|
||||||
def fixed(self, id, e):
|
def fixed(self, id, e):
|
||||||
raise Z3Exception("fixed has not been overwritten")
|
raise Z3Exception("fixed has not been overwritten")
|
||||||
|
|
||||||
def fresh(self):
|
def fresh(self, prop_base):
|
||||||
raise Z3Exception("fresh has not been overwritten")
|
raise Z3Exception("fresh has not been overwritten")
|
||||||
|
|
||||||
def add(self, e):
|
def add(self, e):
|
||||||
|
assert self.solver
|
||||||
return Z3_solver_propagate_register(self.ctx.ref(), self.solver.solver, e.ast)
|
return Z3_solver_propagate_register(self.ctx.ref(), self.solver.solver, e.ast)
|
||||||
|
|
||||||
|
#
|
||||||
|
# Propagation can only be invoked as during a fixed-callback.
|
||||||
|
#
|
||||||
def propagate(self, ids, e):
|
def propagate(self, ids, e):
|
||||||
sz = len(ids)
|
sz = len(ids)
|
||||||
_ids = (ctypes.c_uint * sz)()
|
_ids = (ctypes.c_uint * sz)()
|
||||||
for i in range(sz):
|
for i in range(sz):
|
||||||
_ids[i] = ids[i]
|
_ids[i] = ids[i]
|
||||||
Z3_solver_propagate_consequence(self.ctx.ref(), self.solver.solver, sz, _ids, e.ast)
|
Z3_solver_propagate_consequence(self.ctx.ref(), self.cb, sz, _ids, e.ast)
|
||||||
|
|
||||||
def conflict(self, ids):
|
def conflict(self, ids):
|
||||||
self.propagate(ids, BoolVal(False, self.ctx))
|
self.propagate(ids, BoolVal(False, self.ctx))
|
||||||
|
|
|
@ -82,6 +82,10 @@ class SolverObj(ctypes.c_void_p):
|
||||||
def __init__(self, solver): self._as_parameter_ = solver
|
def __init__(self, solver): self._as_parameter_ = solver
|
||||||
def from_param(obj): return obj
|
def from_param(obj): return obj
|
||||||
|
|
||||||
|
class SolverCallbackObj(ctypes.c_void_p):
|
||||||
|
def __init__(self, solver): self._as_parameter_ = solver
|
||||||
|
def from_param(obj): return obj
|
||||||
|
|
||||||
class FixedpointObj(ctypes.c_void_p):
|
class FixedpointObj(ctypes.c_void_p):
|
||||||
def __init__(self, fixedpoint): self._as_parameter_ = fixedpoint
|
def __init__(self, fixedpoint): self._as_parameter_ = fixedpoint
|
||||||
def from_param(obj): return obj
|
def from_param(obj): return obj
|
||||||
|
|
|
@ -25,6 +25,7 @@ DEFINE_TYPE(Z3_tactic);
|
||||||
DEFINE_TYPE(Z3_probe);
|
DEFINE_TYPE(Z3_probe);
|
||||||
DEFINE_TYPE(Z3_stats);
|
DEFINE_TYPE(Z3_stats);
|
||||||
DEFINE_TYPE(Z3_solver);
|
DEFINE_TYPE(Z3_solver);
|
||||||
|
DEFINE_TYPE(Z3_solver_callback);
|
||||||
DEFINE_TYPE(Z3_ast_vector);
|
DEFINE_TYPE(Z3_ast_vector);
|
||||||
DEFINE_TYPE(Z3_ast_map);
|
DEFINE_TYPE(Z3_ast_map);
|
||||||
DEFINE_TYPE(Z3_apply_result);
|
DEFINE_TYPE(Z3_apply_result);
|
||||||
|
@ -1391,6 +1392,7 @@ typedef enum
|
||||||
def_Type('CONSTRUCTOR', 'Z3_constructor', 'Constructor')
|
def_Type('CONSTRUCTOR', 'Z3_constructor', 'Constructor')
|
||||||
def_Type('CONSTRUCTOR_LIST', 'Z3_constructor_list', 'ConstructorList')
|
def_Type('CONSTRUCTOR_LIST', 'Z3_constructor_list', 'ConstructorList')
|
||||||
def_Type('SOLVER', 'Z3_solver', 'SolverObj')
|
def_Type('SOLVER', 'Z3_solver', 'SolverObj')
|
||||||
|
def_Type('SOLVER_CALLBACK', 'Z3_solver_callback', 'SolverCallbackObj')
|
||||||
def_Type('GOAL', 'Z3_goal', 'GoalObj')
|
def_Type('GOAL', 'Z3_goal', 'GoalObj')
|
||||||
def_Type('TACTIC', 'Z3_tactic', 'TacticObj')
|
def_Type('TACTIC', 'Z3_tactic', 'TacticObj')
|
||||||
def_Type('PARAMS', 'Z3_params', 'Params')
|
def_Type('PARAMS', 'Z3_params', 'Params')
|
||||||
|
@ -1418,7 +1420,7 @@ typedef void Z3_error_handler(Z3_context c, Z3_error_code e);
|
||||||
*/
|
*/
|
||||||
typedef void Z3_push_eh(void* ctx);
|
typedef void Z3_push_eh(void* ctx);
|
||||||
typedef void Z3_pop_eh(void* ctx, unsigned num_scopes);
|
typedef void Z3_pop_eh(void* ctx, unsigned num_scopes);
|
||||||
typedef void Z3_fixed_eh(void* ctx, unsigned id, Z3_ast value);
|
typedef void Z3_fixed_eh(void* ctx, Z3_solver_callback cb, unsigned id, Z3_ast value);
|
||||||
typedef void* Z3_fresh_eh(void* ctx);
|
typedef void* Z3_fresh_eh(void* ctx);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6553,10 +6555,10 @@ extern "C" {
|
||||||
The callback adds a propagation consequence based on the fixed values of the
|
The callback adds a propagation consequence based on the fixed values of the
|
||||||
\c ids.
|
\c ids.
|
||||||
|
|
||||||
def_API('Z3_solver_propagate_consequence', VOID, (_in(CONTEXT), _in(SOLVER), _in(UINT), _in_array(2, UINT), _in(AST)))
|
def_API('Z3_solver_propagate_consequence', VOID, (_in(CONTEXT), _in(SOLVER_CALLBACK), _in(UINT), _in_array(2, UINT), _in(AST)))
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void Z3_API Z3_solver_propagate_consequence(Z3_context c, Z3_solver, unsigned sz, unsigned const* ids, Z3_ast conseq);
|
void Z3_API Z3_solver_propagate_consequence(Z3_context c, Z3_solver_callback, unsigned sz, unsigned const* ids, Z3_ast conseq);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\brief Check whether the assertions in a given solver are consistent or not.
|
\brief Check whether the assertions in a given solver are consistent or not.
|
||||||
|
|
|
@ -2951,7 +2951,7 @@ namespace smt {
|
||||||
|
|
||||||
void context::user_propagate_init(
|
void context::user_propagate_init(
|
||||||
void* ctx,
|
void* ctx,
|
||||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||||
std::function<void(void*)>& push_eh,
|
std::function<void(void*)>& push_eh,
|
||||||
std::function<void(void*, unsigned)>& pop_eh,
|
std::function<void(void*, unsigned)>& pop_eh,
|
||||||
std::function<void*(void*)>& fresh_eh) {
|
std::function<void*(void*)>& fresh_eh) {
|
||||||
|
|
|
@ -1689,7 +1689,7 @@ namespace smt {
|
||||||
*/
|
*/
|
||||||
void user_propagate_init(
|
void user_propagate_init(
|
||||||
void* ctx,
|
void* ctx,
|
||||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||||
std::function<void(void*)>& push_eh,
|
std::function<void(void*)>& push_eh,
|
||||||
std::function<void(void*, unsigned)>& pop_eh,
|
std::function<void(void*, unsigned)>& pop_eh,
|
||||||
std::function<void*(void*)>& fresh_eh);
|
std::function<void*(void*)>& fresh_eh);
|
||||||
|
@ -1700,13 +1700,6 @@ namespace smt {
|
||||||
return m_user_propagator->add_expr(e);
|
return m_user_propagator->add_expr(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
void user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq) {
|
|
||||||
if (!m_user_propagator)
|
|
||||||
throw default_exception("user propagator must be initialized");
|
|
||||||
m_user_propagator->add_propagation(sz, ids, conseq);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool watches_fixed(enode* n) const;
|
bool watches_fixed(enode* n) const;
|
||||||
|
|
||||||
void assign_fixed(enode* n, expr* val, unsigned sz, literal const* explain);
|
void assign_fixed(enode* n, expr* val, unsigned sz, literal const* explain);
|
||||||
|
|
|
@ -235,7 +235,7 @@ namespace smt {
|
||||||
|
|
||||||
void user_propagate_init(
|
void user_propagate_init(
|
||||||
void* ctx,
|
void* ctx,
|
||||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||||
std::function<void(void*)>& push_eh,
|
std::function<void(void*)>& push_eh,
|
||||||
std::function<void(void*, unsigned)>& pop_eh,
|
std::function<void(void*, unsigned)>& pop_eh,
|
||||||
std::function<void*(void*)>& fresh_eh) {
|
std::function<void*(void*)>& fresh_eh) {
|
||||||
|
@ -246,9 +246,6 @@ namespace smt {
|
||||||
return m_kernel.user_propagate_register(e);
|
return m_kernel.user_propagate_register(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
void user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq) {
|
|
||||||
m_kernel.user_propagate_consequence(sz, ids, conseq);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
kernel::kernel(ast_manager & m, smt_params & fp, params_ref const & p) {
|
kernel::kernel(ast_manager & m, smt_params & fp, params_ref const & p) {
|
||||||
|
@ -463,7 +460,7 @@ namespace smt {
|
||||||
|
|
||||||
void kernel::user_propagate_init(
|
void kernel::user_propagate_init(
|
||||||
void* ctx,
|
void* ctx,
|
||||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||||
std::function<void(void*)>& push_eh,
|
std::function<void(void*)>& push_eh,
|
||||||
std::function<void(void*, unsigned)>& pop_eh,
|
std::function<void(void*, unsigned)>& pop_eh,
|
||||||
std::function<void*(void*)>& fresh_eh) {
|
std::function<void*(void*)>& fresh_eh) {
|
||||||
|
@ -474,10 +471,4 @@ namespace smt {
|
||||||
return m_imp->user_propagate_register(e);
|
return m_imp->user_propagate_register(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
void kernel::user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq) {
|
|
||||||
m_imp->user_propagate_consequence(sz, ids, conseq);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,11 +26,12 @@ Revision History:
|
||||||
--*/
|
--*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "ast/ast.h"
|
|
||||||
#include "util/params.h"
|
#include "util/params.h"
|
||||||
#include "model/model.h"
|
|
||||||
#include "util/lbool.h"
|
#include "util/lbool.h"
|
||||||
#include "util/statistics.h"
|
#include "util/statistics.h"
|
||||||
|
#include "ast/ast.h"
|
||||||
|
#include "model/model.h"
|
||||||
|
#include "solver/solver.h"
|
||||||
#include "smt/smt_failure.h"
|
#include "smt/smt_failure.h"
|
||||||
|
|
||||||
struct smt_params;
|
struct smt_params;
|
||||||
|
@ -289,7 +290,7 @@ namespace smt {
|
||||||
*/
|
*/
|
||||||
void user_propagate_init(
|
void user_propagate_init(
|
||||||
void* ctx,
|
void* ctx,
|
||||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||||
std::function<void(void*)>& push_eh,
|
std::function<void(void*)>& push_eh,
|
||||||
std::function<void(void*, unsigned)>& pop_eh,
|
std::function<void(void*, unsigned)>& pop_eh,
|
||||||
std::function<void*(void*)>& fresh_eh);
|
std::function<void*(void*)>& fresh_eh);
|
||||||
|
@ -300,13 +301,6 @@ namespace smt {
|
||||||
unsigned user_propagate_register(expr* e);
|
unsigned user_propagate_register(expr* e);
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
\brief accept a user-propagation callback (issued during fixed_he).
|
|
||||||
*/
|
|
||||||
|
|
||||||
void user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\brief Return a reference to smt::context.
|
\brief Return a reference to smt::context.
|
||||||
This is a temporary hack to support user theories.
|
This is a temporary hack to support user theories.
|
||||||
|
|
|
@ -210,7 +210,7 @@ namespace {
|
||||||
|
|
||||||
void user_propagate_init(
|
void user_propagate_init(
|
||||||
void* ctx,
|
void* ctx,
|
||||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||||
std::function<void(void*)>& push_eh,
|
std::function<void(void*)>& push_eh,
|
||||||
std::function<void(void*, unsigned)>& pop_eh,
|
std::function<void(void*, unsigned)>& pop_eh,
|
||||||
std::function<void*(void*)>& fresh_eh) override {
|
std::function<void*(void*)>& fresh_eh) override {
|
||||||
|
@ -221,10 +221,6 @@ namespace {
|
||||||
return m_context.user_propagate_register(e);
|
return m_context.user_propagate_register(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
void user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq) override {
|
|
||||||
m_context.user_propagate_consequence(sz, ids, conseq);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct scoped_minimize_core {
|
struct scoped_minimize_core {
|
||||||
smt_solver& s;
|
smt_solver& s;
|
||||||
expr_ref_vector m_assumptions;
|
expr_ref_vector m_assumptions;
|
||||||
|
|
|
@ -49,7 +49,7 @@ unsigned user_propagator::add_expr(expr* e) {
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
void user_propagator::add_propagation(unsigned sz, unsigned const* ids, expr* conseq) {
|
void user_propagator::propagate(unsigned sz, unsigned const* ids, expr* conseq) {
|
||||||
m_prop.push_back(prop_info(sz, ids, expr_ref(conseq, m)));
|
m_prop.push_back(prop_info(sz, ids, expr_ref(conseq, m)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ theory * user_propagator::mk_fresh(context * new_ctx) {
|
||||||
void user_propagator::new_fixed_eh(theory_var v, expr* value, unsigned num_lits, literal const* jlits) {
|
void user_propagator::new_fixed_eh(theory_var v, expr* value, unsigned num_lits, literal const* jlits) {
|
||||||
force_push();
|
force_push();
|
||||||
m_id2justification.setx(v, literal_vector(num_lits, jlits), literal_vector());
|
m_id2justification.setx(v, literal_vector(num_lits, jlits), literal_vector());
|
||||||
m_fixed_eh(m_user_context, v, value);
|
m_fixed_eh(m_user_context, this, v, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void user_propagator::push_scope_eh() {
|
void user_propagator::push_scope_eh() {
|
||||||
|
|
|
@ -25,11 +25,12 @@ Notes:
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "smt/smt_theory.h"
|
#include "smt/smt_theory.h"
|
||||||
|
#include "solver/solver.h"
|
||||||
|
|
||||||
namespace smt {
|
namespace smt {
|
||||||
class user_propagator : public theory {
|
class user_propagator : public theory, public solver::propagate_callback {
|
||||||
void* m_user_context;
|
void* m_user_context;
|
||||||
std::function<void(void*, unsigned, expr*)> m_fixed_eh;
|
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)> m_fixed_eh;
|
||||||
std::function<void(void*)> m_push_eh;
|
std::function<void(void*)> m_push_eh;
|
||||||
std::function<void(void*, unsigned)> m_pop_eh;
|
std::function<void(void*, unsigned)> m_pop_eh;
|
||||||
std::function<void*(void*)> m_fresh_eh;
|
std::function<void*(void*)> m_fresh_eh;
|
||||||
|
@ -60,7 +61,7 @@ namespace smt {
|
||||||
*/
|
*/
|
||||||
void add(
|
void add(
|
||||||
void* ctx,
|
void* ctx,
|
||||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||||
std::function<void(void*)>& push_eh,
|
std::function<void(void*)>& push_eh,
|
||||||
std::function<void(void*, unsigned)>& pop_eh,
|
std::function<void(void*, unsigned)>& pop_eh,
|
||||||
std::function<void*(void*)>& fresh_eh) {
|
std::function<void*(void*)>& fresh_eh) {
|
||||||
|
@ -73,7 +74,7 @@ namespace smt {
|
||||||
|
|
||||||
unsigned add_expr(expr* e);
|
unsigned add_expr(expr* e);
|
||||||
|
|
||||||
void add_propagation(unsigned sz, unsigned const* ids, expr* conseq);
|
void propagate(unsigned sz, unsigned const* ids, expr* conseq) override;
|
||||||
|
|
||||||
void new_fixed_eh(theory_var v, expr* value, unsigned num_lits, literal const* jlits);
|
void new_fixed_eh(theory_var v, expr* value, unsigned num_lits, literal const* jlits);
|
||||||
|
|
||||||
|
|
|
@ -238,9 +238,14 @@ public:
|
||||||
|
|
||||||
virtual expr_ref get_implied_upper_bound(expr* e) = 0;
|
virtual expr_ref get_implied_upper_bound(expr* e) = 0;
|
||||||
|
|
||||||
|
class propagate_callback {
|
||||||
|
public:
|
||||||
|
virtual void propagate(unsigned sz, unsigned const* ids, expr* conseq) = 0;
|
||||||
|
};
|
||||||
|
|
||||||
virtual void user_propagate_init(
|
virtual void user_propagate_init(
|
||||||
void* ctx,
|
void* ctx,
|
||||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
std::function<void(void*, propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||||
std::function<void(void*)>& push_eh,
|
std::function<void(void*)>& push_eh,
|
||||||
std::function<void(void*, unsigned)>& pop_eh,
|
std::function<void(void*, unsigned)>& pop_eh,
|
||||||
std::function<void*(void*)>& fresh_eh) {
|
std::function<void*(void*)>& fresh_eh) {
|
||||||
|
@ -249,8 +254,6 @@ public:
|
||||||
|
|
||||||
virtual unsigned user_propagate_register(expr* e) { return 0; }
|
virtual unsigned user_propagate_register(expr* e) { return 0; }
|
||||||
|
|
||||||
virtual void user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq) {}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\brief Display the content of this solver.
|
\brief Display the content of this solver.
|
||||||
|
|
Loading…
Reference in a new issue