From: Haniel Barbosa Date: Fri, 19 Jun 2020 14:48:06 +0000 (-0300) Subject: Generalize atom collection in old proof code (#4626) X-Git-Tag: cvc5-1.0.0~3200 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef45a4a2529ed5eccfcae634207921b6df3eebc1;p=cvc5.git Generalize atom collection in old proof code (#4626) Before terms in assertions that are not sent to the SAT solver could be collected by the old proof code as atoms and thus expected to have a corresponding SAT variable. This commit fixes this by making the atom collection from assertions more conservative. --- diff --git a/src/proof/proof_manager.cpp b/src/proof/proof_manager.cpp index cad2baaa5..99e3010b4 100644 --- a/src/proof/proof_manager.cpp +++ b/src/proof/proof_manager.cpp @@ -565,6 +565,30 @@ void LFSCProof::toStream(std::ostream& out, const ProofLetMap& map) const Unreachable(); } +void collectAtoms(TNode node, std::set& seen, CnfProof* cnfProof) +{ + Debug("pf::pm::atoms") << "collectAtoms: Colleting atoms from " << node + << "\n"; + if (seen.find(node) != seen.end()) + { + Debug("pf::pm::atoms") << "collectAtoms:\t already seen\n"; + return; + } + // if I have a SAT literal for a node, save it, unless this node is a + // negation, in which case its underlying will be collected downstream + if (cnfProof->hasLiteral(node) && node.getKind() != kind::NOT) + { + Debug("pf::pm::atoms") << "collectAtoms: has SAT literal, save\n"; + seen.insert(node); + } + for (unsigned i = 0; i < node.getNumChildren(); ++i) + { + Debug("pf::pm::atoms") << push; + collectAtoms(node[i], seen, cnfProof); + Debug("pf::pm::atoms") << pop; + } +} + void LFSCProof::toStream(std::ostream& out) const { TimerStat::CodeTimer proofProductionTimer( @@ -683,10 +707,15 @@ void LFSCProof::toStream(std::ostream& out) const d_cnfProof->collectAtomsForClauses(used_lemmas, atoms); // collects the atoms in the assertions + Debug("pf::pm") << std::endl + << "LFSCProof::toStream: Colleting atoms from assertions " + << used_assertions << "\n" + << push; for (TNode used_assertion : used_assertions) { - utils::collectAtoms(used_assertion, atoms); + collectAtoms(used_assertion, atoms, d_cnfProof); } + Debug("pf::pm") << pop; std::set::iterator atomIt; Debug("pf::pm") << std::endl diff --git a/src/proof/proof_utils.cpp b/src/proof/proof_utils.cpp index 9f73fed80..cad56db6a 100644 --- a/src/proof/proof_utils.cpp +++ b/src/proof/proof_utils.cpp @@ -21,19 +21,6 @@ namespace CVC4 { namespace utils { -void collectAtoms(TNode node, std::set& seen) { - if (seen.find(node) != seen.end()) - return; - if (theory::Theory::theoryOf(node) != theory::THEORY_BOOL || node.isVar()) { - seen.insert(node); - return; - } - - for (unsigned i = 0; i < node.getNumChildren(); ++i) { - collectAtoms(node[i], seen); - } -} - std::string toLFSCKind(Kind kind) { switch(kind) { // core kinds diff --git a/src/proof/proof_utils.h b/src/proof/proof_utils.h index 147835ecd..e54edd8b7 100644 --- a/src/proof/proof_utils.h +++ b/src/proof/proof_utils.h @@ -225,8 +225,5 @@ inline const bool getBit(Expr expr, unsigned i) { return (bit == 1u); } -void collectAtoms(TNode node, std::set& seen); - - } }