3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-14 21:08:46 +00:00

Fixed initialization order in bvarray2uf_tactic

This commit is contained in:
Christoph M. Wintersteiger 2015-11-27 15:34:06 +00:00
parent 2739930900
commit db2f973e3e

View file

@ -42,9 +42,9 @@ class bvarray2uf_tactic : public tactic {
imp(ast_manager & m, params_ref const & p) :
m_manager(m),
m_produce_models(false),
m_cancel(false),
m_produce_proofs(false),
m_produce_cores(false),
m_cancel(false),
m_rw(m, p) {
updt_params(p);
}