3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-08-06 18:13:26 -07:00
parent 84c7df75d6
commit 8b4e1c1209
3 changed files with 9 additions and 6 deletions

View file

@ -80,10 +80,10 @@ public:
}
expr_ref_vector fmls(m);
rw2.flush_side_constraints(fmls);
for (unsigned i = 0; !g->inconsistent() && i < fmls.size(); ++i) {
g->assert_expr(fmls[i].get());
for (expr* e : fmls) {
g->assert_expr(e);
}
func_decl_ref_vector const& fns = rw2.fresh_constants();
if (!fns.empty()) {
generic_model_converter* filter = alloc(generic_model_converter, m, "card2bv");