mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
parent
5eead52cc0
commit
724a42b6f2
|
@ -180,7 +180,10 @@ ATOMIC_CMD(get_proof_cmd, "get-proof", "retrieve proof", {
|
|||
if (ctx.ignore_check())
|
||||
return;
|
||||
expr_ref pr(ctx.m());
|
||||
pr = ctx.get_check_sat_result()->get_proof();
|
||||
auto* chsr = ctx.get_check_sat_result();
|
||||
if (!chsr)
|
||||
throw cmd_exception("proof is not available");
|
||||
pr = chsr->get_proof();
|
||||
if (!pr && !ctx.produce_proofs())
|
||||
throw cmd_exception("proof construction is not enabled, use command (set-option :produce-proofs true)");
|
||||
if (!pr)
|
||||
|
|
Loading…
Reference in a new issue