Skip to content

Commit

Permalink
fix #3812
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Apr 7, 2020
1 parent b954e0d commit cb13641
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ast/proofs/proof_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,8 @@ class reduce_hypotheses0 {
reduce_hypotheses0(ast_manager& m): m(m), m_refs(m) {}

void operator()(proof_ref& pr) {
if (!pr)
throw default_exception("proof reduction requires well defined proofs");
proof_ref tmp(m);
tmp = pr;
elim(pr);
Expand Down

0 comments on commit cb13641

Please sign in to comment.