mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
parent
6a5695463f
commit
b4e7730034
5 changed files with 2 additions and 12 deletions
|
@ -156,15 +156,12 @@ class sat_tactic : public tactic {
|
|||
imp * m_imp;
|
||||
params_ref m_params;
|
||||
statistics m_stats;
|
||||
symbol m_xor_solver;
|
||||
|
||||
public:
|
||||
sat_tactic(ast_manager & m, params_ref const & p):
|
||||
m_imp(nullptr),
|
||||
m_params(p),
|
||||
m_xor_solver("xor_solver") {
|
||||
m_params(p) {
|
||||
sat_params p1(p);
|
||||
m_params.set_bool(m_xor_solver, p1.xor_solver());
|
||||
}
|
||||
|
||||
tactic * translate(ast_manager & m) override {
|
||||
|
@ -177,8 +174,6 @@ public:
|
|||
|
||||
void updt_params(params_ref const & p) override {
|
||||
m_params = p;
|
||||
sat_params p1(p);
|
||||
m_params.set_bool(m_xor_solver, p1.xor_solver());
|
||||
if (m_imp) m_imp->updt_params(p);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue