summaryrefslogtreecommitdiff
path: root/src/proof
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2021-08-05 17:07:53 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2021-08-05 17:07:53 -0500
commit0ae0024c06d75534afc421ad1fe9362bc29b54ad (patch)
tree8a911ef554681a8f80375699de08a1c86cd45482 /src/proof
parent85bb8f0f40c415bc7cf667eb6b7147261b751ee9 (diff)
Fix stats
Diffstat (limited to 'src/proof')
-rw-r--r--src/proof/proof_node_to_sexpr.cpp6
-rw-r--r--src/proof/proof_node_updater.cpp2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/proof/proof_node_to_sexpr.cpp b/src/proof/proof_node_to_sexpr.cpp
index 67a43fedc..082c3ab94 100644
--- a/src/proof/proof_node_to_sexpr.cpp
+++ b/src/proof/proof_node_to_sexpr.cpp
@@ -297,6 +297,12 @@ ProofNodeToSExpr::ArgFormat ProofNodeToSExpr::getArgumentFormat(
}
}
break;
+ case PfRule::ANNOTATION:
+ if (i==0)
+ {
+ return ArgFormat::INFERENCE_ID;
+ }
+ break;
default: break;
}
return ArgFormat::DEFAULT;
diff --git a/src/proof/proof_node_updater.cpp b/src/proof/proof_node_updater.cpp
index f03520995..561d4a761 100644
--- a/src/proof/proof_node_updater.cpp
+++ b/src/proof/proof_node_updater.cpp
@@ -109,8 +109,6 @@ void ProofNodeUpdater::processInternal(std::shared_ptr<ProofNode> pf,
itc = resCache.find(res);
if (itc != resCache.end())
{
- Trace("ajr-temp") << "Update: " << *cur.get() << std::endl;
- Trace("ajr-temp") << "New: " << *itc->second.get() << std::endl;
// already have a proof, merge it into this one
visited[cur] = true;
d_pnm->updateNode(cur.get(), itc->second.get());
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback