summaryrefslogtreecommitdiff
path: root/src/expr/proof_generator.cpp
blob: d59c8b5250fac7042bd990483e82123b3c5c22d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*********************                                                        */
/*! \file proof_generator.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Andrew Reynolds
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2019 by the authors listed in the file AUTHORS
 ** in the top-level source directory) and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief Implementation of proof generator utility
 **/

#include "expr/proof_generator.h"

#include "expr/proof.h"

namespace CVC4 {

ProofGenerator::ProofGenerator() {}

ProofGenerator::~ProofGenerator() {}

std::shared_ptr<ProofNode> ProofGenerator::getProofFor(Node f)
{
  Unreachable() << "ProofGenerator::getProofFor: " << identify()
                << " has no implementation" << std::endl;
  return nullptr;
}

bool ProofGenerator::addProofTo(Node f, CDProof* pf, CDPOverwrite opolicy)
{
  Trace("pfgen") << "ProofGenerator::addProofTo: " << f << "..." << std::endl;
  Assert(pf != nullptr);
  // plug in the proof provided by the generator, if it exists
  std::shared_ptr<ProofNode> apf = getProofFor(f);
  if (apf != nullptr)
  {
    if (Trace.isOn("pfgen"))
    {
      std::stringstream ss;
      apf->printDebug(ss);
      Trace("pfgen") << "...got proof " << ss.str() << std::endl;
    }
    // Add the proof, without deep copying.
    if (pf->addProof(apf, opolicy, false))
    {
      Trace("pfgen") << "...success!" << std::endl;
      return true;
    }
    Trace("pfgen") << "...failed to add proof" << std::endl;
  }
  else
  {
    Trace("pfgen") << "...failed, no proof" << std::endl;
    Assert(false) << "Failed to get proof from generator for fact " << f;
  }
  return false;
}

PRefProofGenerator::PRefProofGenerator(CDProof* cd) : d_proof(cd) {}

PRefProofGenerator::~PRefProofGenerator() {}

std::shared_ptr<ProofNode> PRefProofGenerator::getProofFor(Node f)
{
  Trace("pfgen") << "PRefProofGenerator::getProofFor: " << f << std::endl;
  return d_proof->mkProof(f);
}

std::string PRefProofGenerator::identify() const
{
  return "PRefProofGenerator";
}

}  // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback