3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-10-18 09:48:46 -07:00
parent 5eead52cc0
commit 724a42b6f2

View file

@ -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)