mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 05:48:44 +00:00
Fixed initialization order in bvarray2uf_tactic
This commit is contained in:
parent
2739930900
commit
db2f973e3e
|
@ -42,9 +42,9 @@ class bvarray2uf_tactic : public tactic {
|
||||||
imp(ast_manager & m, params_ref const & p) :
|
imp(ast_manager & m, params_ref const & p) :
|
||||||
m_manager(m),
|
m_manager(m),
|
||||||
m_produce_models(false),
|
m_produce_models(false),
|
||||||
m_cancel(false),
|
|
||||||
m_produce_proofs(false),
|
m_produce_proofs(false),
|
||||||
m_produce_cores(false),
|
m_produce_cores(false),
|
||||||
|
m_cancel(false),
|
||||||
m_rw(m, p) {
|
m_rw(m, p) {
|
||||||
updt_params(p);
|
updt_params(p);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue