3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Update expr_replacer.h

This commit is contained in:
Nikolaj Bjorner 2022-11-04 11:25:34 -07:00
parent 28668c6efc
commit de9368bab0

View file

@ -38,6 +38,7 @@ public:
void operator()(expr * t, expr_ref & result, proof_ref & result_pr);
void operator()(expr * t, expr_ref & result);
void operator()(expr_ref & t) { expr_ref s(t, m()); (*this)(s, t); }
void operator()(expr_ref_vector& v) { expr_ref t(m()); for (unsigned i = 0; i < v.size(); ++i) (*this)(v.get(i), t), v[i] = t; }
virtual unsigned get_num_steps() const { return 0; }
virtual void reset() = 0;