mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
create empty model
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
dd6e76478d
commit
1fc1249bef
1 changed files with 4 additions and 4 deletions
|
@ -176,10 +176,10 @@ lbool check_sat(tactic & t, goal_ref & g, model_ref & md, labels_vec & labels, p
|
||||||
if (mc.get()) {
|
if (mc.get()) {
|
||||||
(*mc)(labels);
|
(*mc)(labels);
|
||||||
model_converter2model(m, mc.get(), md);
|
model_converter2model(m, mc.get(), md);
|
||||||
if (!md) {
|
}
|
||||||
// create empty model.
|
if (!md) {
|
||||||
md = alloc(model, m);
|
// create empty model.
|
||||||
}
|
md = alloc(model, m);
|
||||||
}
|
}
|
||||||
return l_true;
|
return l_true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue