3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 13:40:52 +00:00

fix missing conversions

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-11-28 14:12:05 -08:00
parent b5ff4602e9
commit a57628fbcc
2 changed files with 3 additions and 4 deletions

View file

@ -1183,8 +1183,8 @@ struct sat2goal::imp {
ref<sat_model_converter> _mc;
if (r.models_enabled()) {
_mc = alloc(sat_model_converter, m, s);
mc = _mc.get();
}
mc = _mc.get();
init_lit2expr(s, map, _mc);
// collect units
unsigned num_vars = s.num_vars();