mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
parent
84c7df75d6
commit
8b4e1c1209
3 changed files with 9 additions and 6 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue