3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-21 02:30:23 +00:00

reset model converter between rounds to elim-unconstrained.

This commit is contained in:
Nikolaj Bjorner 2023-12-18 15:16:04 -08:00
parent 0daa05aab2
commit 13be3c3fbb
3 changed files with 4 additions and 2 deletions

View file

@ -68,6 +68,8 @@ public:
void get_units(obj_map<expr, bool>& units) override;
vector<entry> const& entries() const { return m_entries; }
void reset() { m_entries.reset(); }
};
typedef ref<generic_model_converter> generic_model_converter_ref;