mirror of
https://github.com/Z3Prover/z3
synced 2025-06-14 09:56:15 +00:00
fix #7445
This commit is contained in:
parent
abd16740ce
commit
4f060dd2b1
1 changed files with 4 additions and 1 deletions
|
@ -467,7 +467,7 @@ class set_option_cmd : public set_get_option_cmd {
|
||||||
ctx.set_produce_unsat_cores(to_bool(value));
|
ctx.set_produce_unsat_cores(to_bool(value));
|
||||||
}
|
}
|
||||||
else if (m_option == m_produce_unsat_assumptions) {
|
else if (m_option == m_produce_unsat_assumptions) {
|
||||||
check_not_initialized(ctx, m_produce_unsat_assumptions);
|
check_no_assertions(ctx, m_produce_unsat_assumptions);
|
||||||
ctx.set_produce_unsat_assumptions(to_bool(value));
|
ctx.set_produce_unsat_assumptions(to_bool(value));
|
||||||
}
|
}
|
||||||
else if (m_option == m_produce_models) {
|
else if (m_option == m_produce_models) {
|
||||||
|
@ -626,6 +626,9 @@ public:
|
||||||
else if (opt == m_produce_assignments) {
|
else if (opt == m_produce_assignments) {
|
||||||
print_bool(ctx, ctx.produce_assignments());
|
print_bool(ctx, ctx.produce_assignments());
|
||||||
}
|
}
|
||||||
|
else if (opt == m_produce_unsat_assumptions) {
|
||||||
|
print_bool(ctx, ctx.produce_unsat_assumptions());
|
||||||
|
}
|
||||||
else if (opt == m_global_decls || opt == m_global_declarations) {
|
else if (opt == m_global_decls || opt == m_global_declarations) {
|
||||||
print_bool(ctx, ctx.global_decls());
|
print_bool(ctx, ctx.global_decls());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue