GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/proof/trust_node.cpp Lines: 48 62 77.4 %
Date: 2021-08-17 Branches: 70 200 35.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds
4
 *
5
 * This file is part of the cvc5 project.
6
 *
7
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8
 * in the top-level source directory and their institutional affiliations.
9
 * All rights reserved.  See the file COPYING in the top-level source
10
 * directory for licensing information.
11
 * ****************************************************************************
12
 *
13
 * Implementation of the trust node utility.
14
 */
15
16
#include "proof/trust_node.h"
17
18
#include "proof/proof_ensure_closed.h"
19
#include "proof/proof_generator.h"
20
21
namespace cvc5 {
22
23
const char* toString(TrustNodeKind tnk)
24
{
25
  switch (tnk)
26
  {
27
    case TrustNodeKind::CONFLICT: return "CONFLICT";
28
    case TrustNodeKind::LEMMA: return "LEMMA";
29
    case TrustNodeKind::PROP_EXP: return "PROP_EXP";
30
    case TrustNodeKind::REWRITE: return "REWRITE";
31
    default: return "?";
32
  }
33
}
34
35
std::ostream& operator<<(std::ostream& out, TrustNodeKind tnk)
36
{
37
  out << toString(tnk);
38
  return out;
39
}
40
41
268169
TrustNode TrustNode::mkTrustConflict(Node conf, ProofGenerator* g)
42
{
43
536338
  Node ckey = getConflictProven(conf);
44
  // if a generator is provided, should confirm that it can prove it
45
268169
  Assert(g == nullptr || g->hasProofFor(ckey));
46
536338
  return TrustNode(TrustNodeKind::CONFLICT, ckey, g);
47
}
48
49
2234708
TrustNode TrustNode::mkTrustLemma(Node lem, ProofGenerator* g)
50
{
51
4469416
  Node lkey = getLemmaProven(lem);
52
  // if a generator is provided, should confirm that it can prove it
53
2234708
  Assert(g == nullptr || g->hasProofFor(lkey));
54
4469416
  return TrustNode(TrustNodeKind::LEMMA, lkey, g);
55
}
56
57
558530
TrustNode TrustNode::mkTrustPropExp(TNode lit, Node exp, ProofGenerator* g)
58
{
59
1117060
  Node pekey = getPropExpProven(lit, exp);
60
558530
  Assert(g == nullptr || g->hasProofFor(pekey));
61
1117060
  return TrustNode(TrustNodeKind::PROP_EXP, pekey, g);
62
}
63
64
2063850
TrustNode TrustNode::mkTrustRewrite(TNode n, Node nr, ProofGenerator* g)
65
{
66
4127700
  Node rkey = getRewriteProven(n, nr);
67
2063850
  Assert(g == nullptr || g->hasProofFor(rkey));
68
4127700
  return TrustNode(TrustNodeKind::REWRITE, rkey, g);
69
}
70
71
4550000
TrustNode TrustNode::null()
72
{
73
4550000
  return TrustNode(TrustNodeKind::INVALID, Node::null());
74
}
75
76
9675257
TrustNode::TrustNode(TrustNodeKind tnk, Node p, ProofGenerator* g)
77
9675257
    : d_tnk(tnk), d_proven(p), d_gen(g)
78
{
79
  // does not make sense to provide null node with generator
80
9675257
  Assert(!d_proven.isNull() || d_gen == nullptr);
81
9675257
}
82
83
2821945
TrustNodeKind TrustNode::getKind() const { return d_tnk; }
84
85
7179409
Node TrustNode::getNode() const
86
{
87
7179409
  switch (d_tnk)
88
  {
89
    // the node of lemma is the node itself
90
3013568
    case TrustNodeKind::LEMMA: return d_proven;
91
    // the node of the rewrite is the right hand side of EQUAL
92
2465446
    case TrustNodeKind::REWRITE: return d_proven[1];
93
    // the node of an explained propagation is the antecendant of an IMPLIES
94
    // the node of a conflict is underneath a NOT
95
1700395
    default: return d_proven[0];
96
  }
97
}
98
99
4208379
Node TrustNode::getProven() const { return d_proven; }
100
101
1757229
ProofGenerator* TrustNode::getGenerator() const { return d_gen; }
102
103
7734102
bool TrustNode::isNull() const { return d_proven.isNull(); }
104
105
113180
std::shared_ptr<ProofNode> TrustNode::toProofNode() const
106
{
107
113180
  if (d_gen == nullptr)
108
  {
109
885
    return nullptr;
110
  }
111
112295
  return d_gen->getProofFor(d_proven);
112
}
113
114
283103
Node TrustNode::getConflictProven(Node conf) { return conf.notNode(); }
115
116
2460133
Node TrustNode::getLemmaProven(Node lem) { return lem; }
117
118
612884
Node TrustNode::getPropExpProven(TNode lit, Node exp)
119
{
120
612884
  return NodeManager::currentNM()->mkNode(kind::IMPLIES, exp, lit);
121
}
122
123
2063850
Node TrustNode::getRewriteProven(TNode n, Node nr) { return n.eqNode(nr); }
124
125
559697
void TrustNode::debugCheckClosed(const char* c,
126
                                 const char* ctx,
127
                                 bool reqNullGen)
128
{
129
559697
  pfgEnsureClosed(d_proven, d_gen, c, ctx, reqNullGen);
130
559697
}
131
132
57139
std::string TrustNode::identifyGenerator() const
133
{
134
57139
  if (d_gen == nullptr)
135
  {
136
442
    return "null";
137
  }
138
56697
  return d_gen->identify();
139
}
140
141
std::ostream& operator<<(std::ostream& out, TrustNode n)
142
{
143
  out << "(" << n.getKind() << " " << n.getProven() << " "
144
      << n.identifyGenerator() << ")";
145
  return out;
146
}
147
148
29337
}  // namespace cvc5