summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-06-07 09:09:59 -0500
committerGitHub <noreply@github.com>2021-06-07 14:09:59 +0000
commit029e5378cef6a0432c25ebaab044a69440d398cc (patch)
tree0d30ffecef711dd0fbae39afb742911dcf22141c /src/theory
parentf27d633c82442f2106f747195834c2cb5ba6dd81 (diff)
(proof-new) Lazy proof chain debug names (#6680)
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/booleans/circuit_propagator.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/booleans/circuit_propagator.cpp b/src/theory/booleans/circuit_propagator.cpp
index 2fa2890c2..9e53e24dd 100644
--- a/src/theory/booleans/circuit_propagator.cpp
+++ b/src/theory/booleans/circuit_propagator.cpp
@@ -777,15 +777,15 @@ void CircuitPropagator::setProof(ProofNodeManager* pnm,
{
d_pnm = pnm;
d_epg.reset(new EagerProofGenerator(pnm, ctx));
- d_proofInternal.reset(
- new LazyCDProofChain(pnm, true, ctx, d_epg.get(), true));
+ d_proofInternal.reset(new LazyCDProofChain(
+ pnm, true, ctx, d_epg.get(), true, "CircuitPropInternalLazyChain"));
if (defParent != nullptr)
{
// If we provide a parent proof generator (defParent), we want the ASSUME
// leafs of proofs provided by this class to call the getProofFor method on
// the parent. To do this, we use a LazyCDProofChain.
- d_proofExternal.reset(
- new LazyCDProofChain(pnm, true, ctx, defParent, false));
+ d_proofExternal.reset(new LazyCDProofChain(
+ pnm, true, ctx, defParent, false, "CircuitPropExternalLazyChain"));
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback