File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ class set_option_cmd : public set_get_option_cmd {
467467 ctx.set_produce_unsat_cores (to_bool (value));
468468 }
469469 else if (m_option == m_produce_unsat_assumptions) {
470- check_not_initialized (ctx, m_produce_unsat_assumptions);
470+ check_no_assertions (ctx, m_produce_unsat_assumptions);
471471 ctx.set_produce_unsat_assumptions (to_bool (value));
472472 }
473473 else if (m_option == m_produce_models) {
@@ -626,6 +626,9 @@ class get_option_cmd : public set_get_option_cmd {
626626 else if (opt == m_produce_assignments) {
627627 print_bool (ctx, ctx.produce_assignments ());
628628 }
629+ else if (opt == m_produce_unsat_assumptions) {
630+ print_bool (ctx, ctx.produce_unsat_assumptions ());
631+ }
629632 else if (opt == m_global_decls || opt == m_global_declarations) {
630633 print_bool (ctx, ctx.global_decls ());
631634 }
You can’t perform that action at this time.
0 commit comments